com.ibm.sec.authz.jaccplus
Interface IObligationManager
All known implementing classes:
- public interface IObligationManager
This class is implemented by ObligationManager
.
See Also:
Field Summary
Modifier and Type | Field and Description |
---|---|
|
OBLIGATION_MANAGER_KEY
The context key for storing the handlers in the container.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
getObligationHandler(java.lang.String obligationId)
Method for retrieving all of the registered handlers from the context.
|
|
|
registerObligationHandler(java.lang.String obligationId,IContextObligationHandler o)
Method for adding Obligation handlers to the context.
|
|
supportsObligation(java.lang.String obligationId)
Method for checking if whether or not this handler implementation can
retrieve an attribute.
|
Field Detail
OBLIGATION_MANAGER_KEY
- static final java.lang.String OBLIGATION_MANAGER_KEY
The context key for storing the handlers in the container.
See Also:
Method Detail
getObligationHandler
- IContextObligationHandler getObligationHandler( java.lang.String obligationId)
- throws PolicyContextException
Method for retrieving all of the registered handlers from the context.
Parameters:
obligationId
- The string identifier of the obligation Returns:
all of the handlers registered for the specified obligation.
Throws:
PolicyContextException
- - if the Obligation is not handled. supportsObligation
- boolean supportsObligation(java.lang.String obligationId)
Method for checking if whether or not this handler implementation can
retrieve an attribute.
Parameters:
obligationId
- The string identifier of the obligation for the
attribute to be retrieved. Returns:
true if the handler implementation can retrieve the specified attribute,
false otherwise.
registerObligationHandler
- void registerObligationHandler( java.lang.String obligationId,
- IContextObligationHandler o)
Method for adding Obligation handlers to the context.
Parameters:
obligationId
- The string identifier of the obligation to be
registered. o
- The obligation handler to be registered.