public interface ProgramNotificationSession extends OsidSession
This session defines methods to receive notifications on adds/changes
to Program
objects in this CourseCatalog.
This also includes existing courses that may appear or disappear due to
changes in the CourseCatalog
hierarchy, This session is
intended for consumers needing to synchronize their state with this
service without the use of polling. Notifications are cancelled when this
session is closed.
The two views defined in this session correspond to the views in the
ProgramLookupSession.
Modifier and Type | Method and Description |
---|---|
boolean |
canRegisterForProgramNotifications()
Tests if this user can register for
Program
notifications. |
CourseCatalog |
getCourseCatalog()
Gets the
CourseCatalog associated with this session. |
Id |
getCourseCatalogId()
Gets the
CourseCatalog Id associated
with this session. |
void |
registerForChangedProgram(Id programId)
Registers for notification of an updated program.
|
void |
registerForChangedPrograms()
Registers for notification of updated programs.
|
void |
registerForDeletedProgram(Id programId)
Registers for notification of a deleted course.
|
void |
registerForDeletedPrograms()
Registers for notification of deleted programs.
|
void |
registerForNewPrograms()
Register for notifications of new programs.
|
void |
useFederatedCourseCatalogView()
Federates the view for methods in this session.
|
void |
useIsolatedCourseCatalogView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getCourseCatalogId()
CourseCatalog
Id
associated
with this session. CourseCatalog Id
associated with this
sessionmandatory
- This method must be implemented. CourseCatalog getCourseCatalog() throws OperationFailedException, PermissionDeniedException
CourseCatalog
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canRegisterForProgramNotifications()
Program
notifications. 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 notification operations. false
if notification methods are not
authorized, true
otherwisemandatory
- This method must be implemented. void useFederatedCourseCatalogView()
mandatory
- This method is must be implemented. void useIsolatedCourseCatalogView()
mandatory
- This method is must be implemented. void registerForNewPrograms() throws OperationFailedException, PermissionDeniedException
ProgramReceiver.newProgram()
is invoked when a new
Program
appears in this course catalog.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedPrograms() throws OperationFailedException, PermissionDeniedException
ProgramReceiver.changedProgram()
is invoked when a program in
this course catalog is changed.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedProgram(Id programId) throws OperationFailedException, PermissionDeniedException
ProgramReceiver.changedProgram()
is invoked when the specified
program in this course catalog is changed.programId
- the Id
of the program
to monitorNullArgumentException
- programId
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedPrograms() throws OperationFailedException, PermissionDeniedException
ProgramReceiver.deletedProgram()
is invoked when a program is
deleted or removed from this course catalog.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedProgram(Id programId) throws OperationFailedException, PermissionDeniedException
ProgramReceiver.deletedProgram()
is invoked when the specified
program is deleted or removed from this course catalog.programId
- the Id
of the program
to monitorNullArgumentException
- programId
is
null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented.