Interface ActivityQuerySession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
- All Known Subinterfaces:
ActivitySearchSession
This session provides methods for searching Activities. The
search query is constructed using the ActivityQuery. The activity
record Type also specifies the record for the activity query.
This session defines views that offer differing behaviors for searching.
- federated objective bank view: searches include activities in objective banks of which this objective bank is an ancestor in the objective bank hierarchy
- isolated objective bank view: searches are restricted to activities in this objective bank
Activities may have a query record indicated by their respective
record types. The query record is accessed via the ActivityQuery.
Like all OsidSessions, ActivityQuerySessions are
dedicated to single processing threads and a single authenticated user.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanTests if this user can performActivitysearches.getActivitiesByQuery(ActivityQuery activityQuery) Gets a list ofActivitiesmatching the given activity query.Gets an activity query.Gets theObjectiveBankassociated with this session.Gets theObjectiveBankIdassociated with this session.voidFederates the view for methods in this session.voidIsolates the view for methods in this session.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatTypes, getLocales, isAuthenticated, startTransaction, supportsTransactions
-
Method Details
-
getObjectiveBankId
Id getObjectiveBankId()Gets theObjectiveBankIdassociated with this session.- Returns:
- the
ObjectiveBank Idassociated with this session - Compliance:
mandatory- This method must be implemented.
-
getObjectiveBank
Gets theObjectiveBankassociated with this session.- Returns:
- the
ObjectiveBankassociated with this session - Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
canSearchActivities
boolean canSearchActivities()Tests if this user can performActivitysearches. 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 aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer search operations to unauthorized users.- Returns:
falseif search methods are not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
useFederatedObjectiveBankView
void useFederatedObjectiveBankView()Federates the view for methods in this session. A federated view will include activities in objective banks which are children of this objective bank in the objective bank hierarchy.- Compliance:
mandatory- This method must be implemented.
-
useIsolatedObjectiveBankView
void useIsolatedObjectiveBankView()Isolates the view for methods in this session. An isolated view restricts searches to this objective bank only.- Compliance:
mandatory- This method must be implemented.
-
getActivityQuery
ActivityQuery getActivityQuery()Gets an activity query.- Returns:
- the activity query
- Compliance:
mandatory- This method must be implemented.
-
getActivitiesByQuery
ActivityList getActivitiesByQuery(ActivityQuery activityQuery) throws OperationFailedException, PermissionDeniedException Gets a list ofActivitiesmatching the given activity query.- Parameters:
activityQuery- the activity query- Returns:
- the returned
ActivityList - Throws:
NullArgumentException-activityQueryisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException-activityQueryis not of this service- Compliance:
mandatory- This method must be implemented.
-