Uses of Class
org.openiam.idm.srvc.device.domain.DeviceEntity
-
Packages that use DeviceEntity Package Description org.openiam.dozer.converter org.openiam.esb.repository -
-
Uses of DeviceEntity in org.openiam.dozer.converter
Methods in org.openiam.dozer.converter that return DeviceEntity Modifier and Type Method Description DeviceEntity
DeviceDozerConverter. convertEntity(DeviceEntity userEntity, boolean isDeep)
DeviceEntity
DeviceDozerConverter. convertToEntity(DeviceDTO entity, boolean isDeep)
Methods in org.openiam.dozer.converter that return types with arguments of type DeviceEntity Modifier and Type Method Description List<DeviceEntity>
DeviceDozerConverter. convertToEntityList(List<DeviceDTO> list, boolean isDeep)
Set<DeviceEntity>
DeviceDozerConverter. convertToEntitySet(Set<DeviceDTO> set, boolean isDeep)
Methods in org.openiam.dozer.converter with parameters of type DeviceEntity Modifier and Type Method Description DeviceEntity
DeviceDozerConverter. convertEntity(DeviceEntity userEntity, boolean isDeep)
DeviceDTO
DeviceDozerConverter. convertToDTO(DeviceEntity userEntity, boolean isDeep)
Method parameters in org.openiam.dozer.converter with type arguments of type DeviceEntity Modifier and Type Method Description List<DeviceDTO>
DeviceDozerConverter. convertToDTOList(List<DeviceEntity> list, boolean isDeep)
Set<DeviceDTO>
DeviceDozerConverter. convertToDTOSet(Set<DeviceEntity> set, boolean isDeep)
-
Uses of DeviceEntity in org.openiam.esb.repository
Methods in org.openiam.esb.repository that return DeviceEntity Modifier and Type Method Description DeviceEntity
DeviceRepository. getDeviceEntitiesByTokenHash(String token)
method is used to retrieve device by given token. token must be hashed. search is working with hashed data.DeviceEntity
DeviceRepository. getDeviceEntitiesByTokenHashAndUserId(String token, String userId)
DeviceEntity
DeviceRepository. getDeviceEntitiesByUserIdAndRegistrationToken(String userId, String registrationToken)
Methods in org.openiam.esb.repository that return types with arguments of type DeviceEntity Modifier and Type Method Description List<DeviceEntity>
DeviceRepository. getDeviceEntitiesByActiveTrueAndUserId(String userId)
method is used to retrieve all active user devicesList<DeviceEntity>
DeviceRepository. getDeviceEntitiesByUserId(String userId)
method is used to retrieve all user devices
-