blob: 659e0387ead62fc1da021c17fe0a7e43963e4198 [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.CarDto;
import org.eclipse.osbp.dsl.tests.carstore.entities.Car;
@SuppressWarnings("all")
public class CarDtoService extends AbstractDTOService<CarDto, Car> {
public Class<CarDto> getDtoClass() {
return CarDto.class;
}
public Class<Car> getEntityClass() {
return Car.class;
}
public Object getId(final CarDto dto) {
return dto.getUuid();
}
}