blob: c155f0a13a866bbe7c552341ce2ce329a0e1e152 [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.osbp.mysmartshop.dtos.service;
import org.eclipse.osbp.dsl.dto.lib.services.impl.AbstractDTOService;
import org.osbp.mysmartshop.dtos.DtoTestParentDto;
import org.osbp.mysmartshop.entities.DtoTestParent;
@SuppressWarnings("all")
public class DtoTestParentDtoService extends AbstractDTOService<DtoTestParentDto, DtoTestParent> {
public Class<DtoTestParentDto> getDtoClass() {
return DtoTestParentDto.class;
}
public Class<DtoTestParent> getEntityClass() {
return DtoTestParent.class;
}
public Object getId(final DtoTestParentDto dto) {
return dto.getId();
}
}