Package org.jboss.as.controller.access
Interface AuthorizerConfiguration.ScopedRoleListener
-
- All Known Implementing Classes:
DefaultPermissionFactory
- Enclosing interface:
- AuthorizerConfiguration
public static interface AuthorizerConfiguration.ScopedRoleListenerListener for changes to the configured scoped roles.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidscopedRoleAdded(AuthorizerConfiguration.ScopedRole added)Notification that a scoped role is being added.voidscopedRoleRemoved(AuthorizerConfiguration.ScopedRole removed)Notification that a scoped role has been removed.
-
-
-
Method Detail
-
scopedRoleAdded
void scopedRoleAdded(AuthorizerConfiguration.ScopedRole added)
Notification that a scoped role is being added. The notification will be received before the role becomes visible in the roles collections exposed by theAuthorizerConfiguration.- Parameters:
added- the scoped role
-
scopedRoleRemoved
void scopedRoleRemoved(AuthorizerConfiguration.ScopedRole removed)
Notification that a scoped role has been removed. The notification will be received after the role is no longer visible in the roles collections exposed by theAuthorizerConfiguration.- Parameters:
removed- the scoped role
-
-