public interface FloorCampusSession extends OsidSession
This session provides methods to retrieve Floor to
Campus mappings. A Floor may appear in
multiple Campuses. Each Campus 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 |
canLookupFloorCampusMappings()
Tests if this user can perform lookups of floor/campus mappings.
|
CampusList |
getCampusesByFloor(Id floorId)
Gets the list of
Campus objects mapped to a
Floor. |
IdList |
getCampusIdsByFloor(Id floorId)
Gets the list of
Campus Ids mapped to a
Floor. |
IdList |
getFloorIdsByCampus(Id campusId)
Gets the list of
Floor Ids associated
with a Campus. |
IdList |
getFloorIdsByCampuses(IdList campusIds)
Gets the list of
Floor Ids corresponding to a list of
Campus objects. |
FloorList |
getFloorsByCampus(Id campusId)
Gets the list of
Floors associated with a
Campus. |
FloorList |
getFloorsByCampuses(IdList campusIds)
Gets the list of
Floors corresponding to a list of
Campuses. |
void |
useComparativeCampusView()
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 |
usePlenaryCampusView()
A complete view of the
Floor and Campus
returns is desired. |
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactionscloseboolean canLookupFloorCampusMappings()
PERMISSION_DENIED. This is intendedas
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 useComparativeCampusView()
mandatory - This method is must be implemented. void usePlenaryCampusView()
Floor and Campus
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 getFloorIdsByCampus(Id campusId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Floor Ids associated
with a Campus. campusId - Id of a Campus Ids NotFoundException - campusId is not
foundNullArgumentException - campusId is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. FloorList getFloorsByCampus(Id campusId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Floors associated with a
Campus. campusId - Id of a Campus NotFoundException - campusId is not
foundNullArgumentException - campusId is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. IdList getFloorIdsByCampuses(IdList campusIds) throws OperationFailedException, PermissionDeniedException
Floor Ids corresponding to a list of
Campus objects.campusIds - list of campus Ids Ids NullArgumentException - campusIds is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. FloorList getFloorsByCampuses(IdList campusIds) throws OperationFailedException, PermissionDeniedException
Floors corresponding to a list of
Campuses. campusIds - list of campus Ids NullArgumentException - campusIds is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. IdList getCampusIdsByFloor(Id floorId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Campus Ids mapped to a
Floor. floorId - Id of a Floor Ids NotFoundException - floorId is not foundNullArgumentException - floorId is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. CampusList getCampusesByFloor(Id floorId) throws NotFoundException, OperationFailedException, PermissionDeniedException
Campus objects mapped to a
Floor. floorId - Id of a Floor NotFoundException - floorId is not foundNullArgumentException - floorId is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented.