blob: b776c5c5068061cf551ddc07dbcb8471c0929736 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf), Loetz GmbH&Co.KG (Heidelberg)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.dsl.tests.carstore.dtos.services;
import org.eclipse.osbp.dsl.dto.lib.services.impl.AbstractDTOService;
import org.eclipse.osbp.dsl.tests.carstore.dtos.AddonDto;
import org.eclipse.osbp.dsl.tests.carstore.entities.Addon;
@SuppressWarnings("all")
public class AddonDtoService extends AbstractDTOService<AddonDto, Addon> {
public Class<AddonDto> getDtoClass() {
return AddonDto.class;
}
public Class<Addon> getEntityClass() {
return Addon.class;
}
public Object getId(final AddonDto dto) {
return dto.getUuid();
}
}