public interface DeedQuerySession extends OsidSession
This session provides methods for searching Deed
objects. The search query is constructed using the DeedQuery.
The deed record Type
also specifies the record for
the deed query.
Deeds may have a query record indicated by their respective record
types. The query record is accessed via the DeedQuery.
The
returns in this session may not be cast directly to these interfaces.
Modifier and Type | Method and Description |
---|---|
boolean |
canSearchDeeds()
Tests if this user can perform
Deed searches. |
Campus |
getCampus()
Gets the
Campus associated with this session. |
Id |
getCampusId()
Gets the
Campus Id associated with this
session. |
DeedQuery |
getDeedQuery()
Gets a deed query.
|
DeedList |
getDeedsByQuery(DeedQuery deedQuery)
Gets a list of
Deeds matching the given deed query. |
void |
useFederatedCampusView()
Federates the view for methods in this session.
|
void |
useIsolatedCampusView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getCampusId()
Campus
Id
associated with this
session. Campus Id
associated with this sessionmandatory
- This method must be implemented. Campus getCampus() throws OperationFailedException, PermissionDeniedException
Campus
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canSearchDeeds()
Deed
searches. A return
of true does not guarantee successful authorization. A return of false
indicates that it is known all methods in this session will result in
a PERMISSION_DENIED.
This is intended as a hint to an
application that may opt not to offer search operations to
unauthorized users. false
if search methods are not authorized,
true
otherwisemandatory
- This method must be implemented. void useFederatedCampusView()
mandatory
- This method is must be implemented. void useIsolatedCampusView()
mandatory
- This method is must be implemented. DeedQuery getDeedQuery()
mandatory
- This method must be implemented. DeedList getDeedsByQuery(DeedQuery deedQuery) throws OperationFailedException, PermissionDeniedException
Deeds
matching the given deed query.deedQuery
- the deed query DeedList
NullArgumentException
- deedQuery
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failureUnsupportedException
- DeedQuery
is not
of this servicemandatory
- This method must be implemented.