Package org.openiam.dozer.converter
Class DeviceDozerConverter
- java.lang.Object
-
- org.openiam.esb.core.dozer.converter.AbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
- org.openiam.dozer.converter.DeviceDozerConverter
-
@Component("deviceDozerConverter") public class DeviceDozerConverter extends AbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
-
Constructor Summary
Constructors Constructor Description DeviceDozerConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeviceDTO
convertDTO(DeviceDTO entity, boolean isDeep)
DeviceEntity
convertEntity(DeviceEntity userEntity, boolean isDeep)
DeviceDTO
convertToDTO(DeviceEntity userEntity, boolean isDeep)
List<DeviceDTO>
convertToDTOList(List<DeviceEntity> list, boolean isDeep)
Set<DeviceDTO>
convertToDTOSet(Set<DeviceEntity> set, boolean isDeep)
DeviceEntity
convertToEntity(DeviceDTO entity, boolean isDeep)
List<DeviceEntity>
convertToEntityList(List<DeviceDTO> list, boolean isDeep)
Set<DeviceEntity>
convertToEntitySet(Set<DeviceDTO> set, boolean isDeep)
-
Methods inherited from class org.openiam.esb.core.dozer.converter.AbstractDozerEntityConverter
convert, convertListToCrossEntity, convertSetToCrossEntity, convertToCrossEntity
-
-
-
-
Method Detail
-
convertEntity
public DeviceEntity convertEntity(DeviceEntity userEntity, boolean isDeep)
- Specified by:
convertEntity
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertDTO
public DeviceDTO convertDTO(DeviceDTO entity, boolean isDeep)
- Specified by:
convertDTO
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertToEntity
public DeviceEntity convertToEntity(DeviceDTO entity, boolean isDeep)
- Specified by:
convertToEntity
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertToDTO
public DeviceDTO convertToDTO(DeviceEntity userEntity, boolean isDeep)
- Specified by:
convertToDTO
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertToEntityList
public List<DeviceEntity> convertToEntityList(List<DeviceDTO> list, boolean isDeep)
- Specified by:
convertToEntityList
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertToDTOList
public List<DeviceDTO> convertToDTOList(List<DeviceEntity> list, boolean isDeep)
- Specified by:
convertToDTOList
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertToEntitySet
public Set<DeviceEntity> convertToEntitySet(Set<DeviceDTO> set, boolean isDeep)
- Specified by:
convertToEntitySet
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
convertToDTOSet
public Set<DeviceDTO> convertToDTOSet(Set<DeviceEntity> set, boolean isDeep)
- Specified by:
convertToDTOSet
in classAbstractDozerEntityConverter<DeviceDTO,DeviceEntity>
-
-