Package org.cyclos.impl.users
Interface QuickAccessHandler
-
public interface QuickAccessHandlerContains helper methods to handle quick access items
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(QuickAccess quickAccess, QuickAccessDTO dto)Returns whether the given entity matches the given DTObooleanmatches(QuickAccessDTO dto, QuickAccess quickAccess)Returns whether the given DTO matches the given entityConfigurationEntitytoEntity(QuickAccessDTO dto)Converts the entity VO in the given DTO to actual entityConfigurationEntityVOtoEntityVO(QuickAccess quickAccess)Converts the entity VO in the given DTO to actual entityQuickAccessDTOtoRunnableDTO(QuickAccess quickAccess)Converts the given quick access to a DTO whose custom operations are of typeRunnableCustomOperationVO.
-
-
-
Method Detail
-
matches
boolean matches(QuickAccess quickAccess, QuickAccessDTO dto)
Returns whether the given entity matches the given DTO
-
matches
boolean matches(QuickAccessDTO dto, QuickAccess quickAccess)
Returns whether the given DTO matches the given entity
-
toEntity
ConfigurationEntity toEntity(QuickAccessDTO dto)
Converts the entity VO in the given DTO to actual entity
-
toEntityVO
ConfigurationEntityVO toEntityVO(QuickAccess quickAccess)
Converts the entity VO in the given DTO to actual entity
-
toRunnableDTO
QuickAccessDTO toRunnableDTO(QuickAccess quickAccess)
Converts the given quick access to a DTO whose custom operations are of typeRunnableCustomOperationVO.
-
-