public interface AssessmentTakenQuerySession extends OsidSession
This session provides methods for searching among
AssessmentTaken
objects. The search query is constructed using the
AssessmentTakenQuery.
This session defines views that offer differing behaviors for searching.
Assessments taken may have a query record indicated by their
respective query record types. The query record is accessed via the
AssessmentTakenQuery.
Modifier and Type | Method and Description |
---|---|
boolean |
canSearchAssessmentsTaken()
Tests if this user can perform
AssessmentTaken
searches. |
AssessmentTakenList |
getAssessmentsTakenByQuery(AssessmentTakenQuery assessmentTakenQuery)
Gets a list of
AssessmentTaken elements matching the
given assessment taken query. |
AssessmentTakenQuery |
getAssessmentTakenQuery()
Gets an assessment taken query.
|
Bank |
getBank()
Gets the
Bank associated with this session. |
Id |
getBankId()
Gets the
Bank Id associated with this
session. |
void |
useFederatedBankView()
Federates the view for methods in this session.
|
void |
useIsolatedBankView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getBankId()
Bank
Id
associated with this
session. Bank Id
associated with this sessionmandatory
- This method must be implemented. Bank getBank() throws OperationFailedException, PermissionDeniedException
Bank
associated with this session. Bank
associated with this sessionOperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canSearchAssessmentsTaken()
AssessmentTaken
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 useFederatedBankView()
mandatory
- This method is must be implemented. void useIsolatedBankView()
mandatory
- This method is must be implemented. AssessmentTakenQuery getAssessmentTakenQuery()
mandatory
- This method must be implemented. AssessmentTakenList getAssessmentsTakenByQuery(AssessmentTakenQuery assessmentTakenQuery) throws OperationFailedException, PermissionDeniedException
AssessmentTaken
elements matching the
given assessment taken query.assessmentTakenQuery
- the assessment taken query AssessmentTakenList
NullArgumentException
- assessmentTakenQuery
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failure
occurredUnsupportedException
- assessmentTakenQuery
is not of this servicemandatory
- This method must be implemented.