public interface ProcessEnablerOfficeSession extends OsidSession
This session provides methods to retrieve ProcessEnabler
to Office mappings. A ProcessEnabler may
appear in multiple Office objects. Each office may have its
own authorizations governing who is allowed to look at it.
This lookup session defines several views:
| Modifier and Type | Method and Description |
|---|---|
boolean |
canLookupProcessEnablerOfficeMappings()
Tests if this user can perform lookups of process enabler/office
mappings.
|
IdList |
getOfficeIdsByProcessEnabler(Id processEnablerId)
Gets the
Office Ids mapped to a
ProcessEnabler. |
OfficeList |
getOfficesByProcessEnabler(Id processEnablerId)
Gets the
Offices mapped to a ProcessEnabler. |
IdList |
getProcessEnablerIdsByOffice(Id officeId)
Gets the list of
ProcessEnablerIds associated with an
Office. |
IdList |
getProcessEnablerIdsByOffices(IdList officeIds)
Gets the list of
ProcessEnabler Ids corresponding to a
list of Offices. |
ProcessEnablerList |
getProcessEnablersByOffice(Id officeId)
Gets the list of process enabler associated with an
Office. |
ProcessEnablerList |
getProcessEnablersByOffices(IdList officeIds)
Gets the list of process enabler corresponding to a list of
Offices. |
void |
useComparativeProcessEnablerOfficeView()
The returns from the lookup methods may omit or translate elements
based on this session, such as authorization, and not result in an
error.
|
void |
usePlenaryProcessEnablerOfficeView()
A complete view of the
ProcessEnabler and Office
returns is desired. |
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactionscloseboolean canLookupProcessEnablerOfficeMappings()
PERMISSION_DENIED.
This is intended as a hint to an application that may opt not
to offer lookup operations to unauthorized users. false if looking up mappings is not authorized,
true otherwisemandatory - This method must be implemented. void useComparativeProcessEnablerOfficeView()
mandatory - This method is must be implemented. void usePlenaryProcessEnablerOfficeView()
ProcessEnabler and Office
returns 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.mandatory - This method is must be implemented. IdList getProcessEnablerIdsByOffice(Id officeId) throws NotFoundException, OperationFailedException, PermissionDeniedException
ProcessEnablerIds associated with an
Office. officeId - Id of the Office Ids NotFoundException - officeId is not
foundNullArgumentException - officeId is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. ProcessEnablerList getProcessEnablersByOffice(Id officeId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Office.
officeId - Id of the Office NotFoundException - officeId is not
foundNullArgumentException - officeId is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. IdList getProcessEnablerIdsByOffices(IdList officeIds) throws OperationFailedException, PermissionDeniedException
ProcessEnabler Ids corresponding to a
list of Offices. officeIds - list of office Ids Ids NullArgumentException - officeIds is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. ProcessEnablerList getProcessEnablersByOffices(IdList officeIds) throws OperationFailedException, PermissionDeniedException
Offices. officeIds - list of office Ids NullArgumentException - officeIds is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. IdList getOfficeIdsByProcessEnabler(Id processEnablerId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Office Ids mapped to a
ProcessEnabler. processEnablerId - Id of a ProcessEnabler
NotFoundException - processEnablerId is
not foundNullArgumentException - processEnablerId
is null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. OfficeList getOfficesByProcessEnabler(Id processEnablerId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Offices mapped to a ProcessEnabler.
processEnablerId - Id of a ProcessEnabler
NotFoundException - processEnablerId is
not foundNullArgumentException - processEnablerId
is null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented.