Interface WorkflowEventOfficeSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
This session provides methods to retrieve WorkflowEvent to
Office mappings. A WorkflowEvent may appear in multiple
Office objects. E ach office may have its own authorizations
governing who is allowed to look at it.
This lookup session defines several views:
- comparative view: elements may be silently omitted or re-ordered
- plenary view: provides a complete result set or is an error condition
Like all OsidSessions, WorkflowEventOfficeSessions are
dedicated to single processing threads and a single authenticated user.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanTests if this user can perform lookups of workflow event/office mappings.getOfficeIdsByWorkflowEvent(Id workflowEventId) Gets theOfficeIdsmapped to aWorkflowEvent.getOfficesByWorkflowEvent(Id workflowEventId) Gets theOfficesmapped to aWorkflowEvent.getWorkflowEventIdsByOffice(Id officeId) Gets the list ofWorkflowEvent Idsassociated with anOffice.getWorkflowEventIdsByOffices(IdList officeIds) Gets the list ofWorkflowEvent Idscorresponding to a list ofOffices.getWorkflowEventsByOffice(Id officeId) Gets the list ofWorkflowEventsassociated with anOffice.getWorkflowEventsByOffices(IdList officeIds) Gets the list ofWorkflowEventcorresponding to a list ofOffices.voidThe returns from the lookup methods may omit or translate elements based on this session, such as authorization, and not result in an error.voidA complete view of theWorkflowEventandOfficereturns is desired.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatTypes, getLocales, isAuthenticated, startTransaction, supportsTransactions
-
Method Details
-
canLookupWorkflowEventOfficeMappings
boolean canLookupWorkflowEventOfficeMappings()Tests if this user can perform lookups of workflow event/office mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known lookup 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 looking up mappings is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
useComparativeWorkflowEventOfficeView
void useComparativeWorkflowEventOfficeView()The returns from the lookup methods may omit or translate elements based on this session, such as authorization, and not result in an error. This view is used when greater interoperability is desired at the expense of precision.- Compliance:
mandatory- This method must be implemented.
-
usePlenaryWorkflowEventOfficeView
void usePlenaryWorkflowEventOfficeView()A complete view of theWorkflowEventandOfficereturns is desired. Methods will return what is requested or result in an error. This view is used when greater precision is desired at the expense of interoperability.- Compliance:
mandatory- This method must be implemented.
-
getWorkflowEventIdsByOffice
IdList getWorkflowEventIdsByOffice(Id officeId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the list ofWorkflowEvent Idsassociated with anOffice.- Parameters:
officeId-Idof theOffice- Returns:
- list of related workflow event
Ids - Throws:
NotFoundException-officeIdis not foundNullArgumentException-officeIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getWorkflowEventsByOffice
WorkflowEventList getWorkflowEventsByOffice(Id officeId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the list ofWorkflowEventsassociated with anOffice.- Parameters:
officeId-Idof theOffice- Returns:
- list of related workflow events
- Throws:
NotFoundException-officeIdis not foundNullArgumentException-officeIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getWorkflowEventIdsByOffices
IdList getWorkflowEventIdsByOffices(IdList officeIds) throws OperationFailedException, PermissionDeniedException Gets the list ofWorkflowEvent Idscorresponding to a list ofOffices.- Parameters:
officeIds- list of officeIds- Returns:
- list of workflow event
Ids - Throws:
NullArgumentException-officeIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getWorkflowEventsByOffices
WorkflowEventList getWorkflowEventsByOffices(IdList officeIds) throws OperationFailedException, PermissionDeniedException Gets the list ofWorkflowEventcorresponding to a list ofOffices.- Parameters:
officeIds- list of officeIds- Returns:
- list of workflow events
- Throws:
NullArgumentException-officeIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getOfficeIdsByWorkflowEvent
IdList getOfficeIdsByWorkflowEvent(Id workflowEventId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets theOfficeIdsmapped to aWorkflowEvent.- Parameters:
workflowEventId-Idof aWorkflowEvent- Returns:
- list of office
Ids - Throws:
NotFoundException-workflowEventIdis not foundNullArgumentException-workflowEventIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getOfficesByWorkflowEvent
OfficeList getOfficesByWorkflowEvent(Id workflowEventId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets theOfficesmapped to aWorkflowEvent.- Parameters:
workflowEventId-Idof aWorkflowEvent- Returns:
- list of offices
- Throws:
NotFoundException-workflowEventIdis not foundNullArgumentException-workflowEventIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-