Package org.cyclos.impl.system
Interface ChannelConfigurationServiceLocal
-
- All Superinterfaces:
ChannelConfigurationService,CRUDService<ChannelConfigurationDTO,ChannelConfigurationData,ChannelConfigurationDataParams>,CRUDServiceLocal<ChannelConfiguration,ChannelConfigurationDTO,ChannelConfigurationData,ChannelConfigurationDataParams>,Service
public interface ChannelConfigurationServiceLocal extends CRUDServiceLocal<ChannelConfiguration,ChannelConfigurationDTO,ChannelConfigurationData,ChannelConfigurationDataParams>, ChannelConfigurationService
Local interface forChannelConfigurationService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanActivateTrustedDevice(Channel channel)Returns whether a device can be activated as trusted using the given channelbooleanisDeviceSupported(CredentialUsage usage, Channel channel)Returns whether the DEVICE is supported for the given usage and channel or not.booleanisUsedForAccess(PasswordType passwordType)Returns whether the give password type is used either as access password on any channel-
Methods inherited from interface org.cyclos.services.system.ChannelConfigurationService
list
-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
Methods inherited from interface org.cyclos.impl.CRUDServiceLocal
find, findAll, getEntityClass, newEntity, remove, removeAll, saveEntity, saveSkippingEntityLog, toDTO, toEntity, validate
-
-
-
-
Method Detail
-
canActivateTrustedDevice
boolean canActivateTrustedDevice(Channel channel)
Returns whether a device can be activated as trusted using the given channel
-
isDeviceSupported
boolean isDeviceSupported(CredentialUsage usage, Channel channel)
Returns whether the DEVICE is supported for the given usage and channel or not. If the usage is disabled for the channel then it returns false.
-
isUsedForAccess
boolean isUsedForAccess(PasswordType passwordType)
Returns whether the give password type is used either as access password on any channel
-
-