Interface AuditEnablerInquestAssignmentSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
This session provides methods to re-assign AuditEnabler to
Inquest mappings. An AuditEnabler may appear in multiple
Inquest objects and removing the last reference to an
AuditEnabler is the equivalent of deleting it. Each Inquest may
have its own authorizations governing who is allowed to operate on it.
Adding a reference of an AuditEnabler to another
Inquest is not a copy operation (eg: does not change its Id).
Like all OsidSessions,
AuditEnablerInquestAssignmentSessions are dedicated to single processing
threads and a single authenticated user.
-
Method Summary
Modifier and TypeMethodDescriptionvoidassignAuditEnablerToInquest(Id auditEnablerId, Id inquestId) Adds an existingAuditEnablerto anInquest.booleanTests if this user can alter audit enabler/inquest mappings.booleancanAssignAuditEnablersToInquest(Id inquestId) Tests if this user can alter audit enabler/inquest mappings.getAssignableInquestIds(Id inquestId) Gets a list of inquests including and under the given inquest node in which any audit enabler can be assigned.getAssignableInquestIdsForAuditEnabler(Id inquestId, Id auditEnablerId) Gets a list of inquests including and under the given inquest node in which a specific audit enabler can be assigned.voidreassignAuditEnablerEnablerToInquest(Id auditEnablerId, Id fromInquestId, Id toInquestId) Moves anAuditEnablerfrom oneInquestto another.voidunassignAuditEnablerFromInquest(Id auditEnablerId, Id inquestId) Removes anAuditEnablerfrom anInquest.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatTypes, getLocales, isAuthenticated, startTransaction, supportsTransactions
-
Method Details
-
canAssignAuditEnablers
boolean canAssignAuditEnablers()Tests if this user can alter audit enabler/inquest mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known mapping methods in this session will result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer lookup operations to unauthorized users.- Returns:
falseif mapping is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
canAssignAuditEnablersToInquest
Tests if this user can alter audit enabler/inquest mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known mapping methods in this session will result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer lookup operations to unauthorized users.- Parameters:
inquestId- theIdof theInquest- Returns:
falseif mapping is not authorized,trueotherwise- Throws:
NullArgumentException-inquestIdisnull- Compliance:
mandatory- This method must be implemented.
-
getAssignableInquestIds
Gets a list of inquests including and under the given inquest node in which any audit enabler can be assigned.- Parameters:
inquestId- theIdof theInquest- Returns:
- list of assignable inquest
Ids - Throws:
NullArgumentException-inquestIdisnullOperationFailedException- unable to complete request- Compliance:
mandatory- This method must be implemented.
-
getAssignableInquestIdsForAuditEnabler
IdList getAssignableInquestIdsForAuditEnabler(Id inquestId, Id auditEnablerId) throws OperationFailedException Gets a list of inquests including and under the given inquest node in which a specific audit enabler can be assigned.- Parameters:
inquestId- theIdof theInquestauditEnablerId- theIdof theAuditEnabler- Returns:
- list of assignable inquest
Ids - Throws:
NullArgumentException-inquestIdorauditEnablerIdisnullOperationFailedException- unable to complete request- Compliance:
mandatory- This method must be implemented.
-
assignAuditEnablerToInquest
void assignAuditEnablerToInquest(Id auditEnablerId, Id inquestId) throws AlreadyExistsException, NotFoundException, OperationFailedException, PermissionDeniedException Adds an existingAuditEnablerto anInquest.- Parameters:
auditEnablerId- theIdof theAuditEnablerinquestId- theIdof theInquest- Throws:
AlreadyExistsException-auditEnablerIdalready assigned toinquestIdNotFoundException-auditEnablerIdorinquestIdnot foundNullArgumentException-auditEnablerIdorinquestIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
unassignAuditEnablerFromInquest
void unassignAuditEnablerFromInquest(Id auditEnablerId, Id inquestId) throws NotFoundException, OperationFailedException, PermissionDeniedException Removes anAuditEnablerfrom anInquest.- Parameters:
auditEnablerId- theIdof theAuditEnablerinquestId- theIdof theInquest- Throws:
NotFoundException-auditEnablerIdorinquestIdnot found orauditEnablerIdalready assigned toinquestIdNullArgumentException-auditEnablerIdorinquestIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
reassignAuditEnablerEnablerToInquest
void reassignAuditEnablerEnablerToInquest(Id auditEnablerId, Id fromInquestId, Id toInquestId) throws AlreadyExistsException, NotFoundException, OperationFailedException, PermissionDeniedException Moves anAuditEnablerfrom oneInquestto another. Mappings to otherInquestsare unaffected.- Parameters:
auditEnablerId- theIdof theAuditEnablerfromInquestId- theIdof the currentInquesttoInquestId- theIdof the destinationInquest- Throws:
AlreadyExistsException-auditEnablerIdalready assigned totoInquestIdNotFoundException-auditEnabler, fromInquestId, ortoInquestIdnot found orauditEnablernot mapped tofromInquestIdNullArgumentException-auditEnabler, fromInquestId, ortoInquestIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-