public interface ScheduleQuerySession extends OsidSession
This session provides methods for searching Schedule
objects. The search query is constructed using the ScheduleQuery.
The schedule record Type
also specifies the record
for the schedule query.
This session defines views that offer differing behaviors for searching.
Schedules may have a query record indicated by their respective record
types. The query record is accessed via the ScheduleQuery.
Modifier and Type | Method and Description |
---|---|
boolean |
canSearchSchedules()
Tests if this user can perform
Schedules searches. |
Calendar |
getCalendar()
Gets the
Calendar associated with this session. |
Id |
getCalendarId()
Gets the
Calendar Id associated with
this session. |
ScheduleQuery |
getScheduleQuery()
Gets a schedule query.
|
ScheduleList |
getSchedulesByQuery(ScheduleQuery scheduleQuery)
Gets a list of
Schedules matching the given schedle
query. |
void |
useFederatedCalendarView()
Federates the view for methods in this session.
|
void |
useIsolatedCalendarView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getCalendarId()
Calendar
Id
associated with
this session. Calendar Id
associated with this sessionmandatory
- This method must be implemented. Calendar getCalendar() throws OperationFailedException, PermissionDeniedException
Calendar
associated with this session. Calendar
associated with this sessionOperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canSearchSchedules()
Schedules
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 useFederatedCalendarView()
mandatory
- This method is must be implemented. void useIsolatedCalendarView()
mandatory
- This method is must be implemented. ScheduleQuery getScheduleQuery()
mandatory
- This method must be implemented. ScheduleList getSchedulesByQuery(ScheduleQuery scheduleQuery) throws OperationFailedException, PermissionDeniedException
Schedules
matching the given schedle
query.scheduleQuery
- the schedule query ScheduleList
NullArgumentException
- scheduleQuery
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failureUnsupportedException
- scheduleQuery
is
not of this servicemandatory
- This method must be implemented.