Interface SecurityLevelManager
public interface SecurityLevelManager
A SecurityLevelManager is the source of record for all SecurityLevels configured in the system
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Simple class to notify subscribers of the event bus that the security levels have changed -
Method Summary
Modifier and TypeMethodDescriptioncom.google.common.eventbus.EventBus
TheEventBus
whereChangeEvents
are postedcom.google.common.collect.ImmutableCollection<SecurityLevelConfig>
Fetch allSecurityLevelConfigs
in the systemvoid
updateSecurityLevelsConfig
(com.google.common.collect.ImmutableCollection<SecurityLevelConfig> updatedSecurityLevelsConfig) Update allSecurityLevelConfigs
in the system
-
Method Details
-
getSecurityLevelsConfig
@Nonnull com.google.common.collect.ImmutableCollection<SecurityLevelConfig> getSecurityLevelsConfig()Fetch allSecurityLevelConfigs
in the system -
updateSecurityLevelsConfig
@Nonnull void updateSecurityLevelsConfig(@Nonnull com.google.common.collect.ImmutableCollection<SecurityLevelConfig> updatedSecurityLevelsConfig) Update allSecurityLevelConfigs
in the system- Parameters:
updatedSecurityLevelsConfig
- the new security levels config
-
getEventBus
@Nonnull com.google.common.eventbus.EventBus getEventBus()TheEventBus
whereChangeEvents
are posted
-