public interface OrganizationQuerySession extends OsidSession
This session provides methods for querying Organization
objects. The search query is constructed using the
OrganizationQuery.
This session defines views that offer differing behaviors for searching.
Organizations may have a query record indicated by their respective
record types. The query record is accessed via the
OrganizationQuery.
The returns in this session may not be cast
directly to these interfaces.
Modifier and Type | Method and Description |
---|---|
boolean |
canSearchOrganizations()
Tests if this user can perform
Organization searches. |
OrganizationQuery |
getOrganizationQuery()
Gets an organization query.
|
OrganizationList |
getOrganizationsByQuery(OrganizationQuery organizationQuery)
Gets a list of organizations matching the given organization query.
|
Realm |
getRealm()
Gets the
Realm associated with this session. |
Id |
getRealmId()
Gets the
Realm Id associated with this
session. |
void |
useFederatedRealmView()
Federates the view for methods in this session.
|
void |
useIsolatedRealmView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getRealmId()
Realm
Id
associated with this
session. Realm Id
associated with this sessionmandatory
- This method must be implemented. Realm getRealm() throws OperationFailedException, PermissionDeniedException
Realm
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canSearchOrganizations()
Organization
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 wish not to offer search operations to
unauthorized users. false
if search methods are not authorized,
true
otherwisemandatory
- This method must be implemented. void useFederatedRealmView()
mandatory
- This method is must be implemented. void useIsolatedRealmView()
mandatory
- This method is must be implemented. OrganizationQuery getOrganizationQuery()
mandatory
- This method must be implemented. OrganizationList getOrganizationsByQuery(OrganizationQuery organizationQuery) throws OperationFailedException, PermissionDeniedException
organizationQuery
- the organization query OrganizationList
NullArgumentException
- organizationQuery
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failureUnsupportedException
- organizationQuery
is not of this servicemandatory
- This method must be implemented.