public interface JobConstrainerEnablerNotificationSession extends OsidSession
This session defines methods to receive notifications on adds/changes
to JobConstrainerEnabler
objects in this Foundry.
This also includes existing JobConstrainerEnablers
that may appear or disappear due to changes in the Foundry
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
JobConstrainerEnablerLookupSession.
Modifier and Type | Method and Description |
---|---|
boolean |
canRegisterForJobConstrainerEnablerNotifications()
Tests if this user can register for
JobConstrainerEnabler
notifications. |
Foundry |
getFoundry()
Gets the
Foundry associated with this session. |
Id |
getFoundryId()
Gets the
Foundry Id associated with this
session. |
void |
registerForChangedJobConstrainerEnabler(Id jobConstrainerEnablerId)
Registers for notification of an updated job constrainer enabler.
|
void |
registerForChangedJobConstrainerEnablers()
Registers for notification of updated foundry enabelrs.
|
void |
registerForDeletedJobConstrainerEnabler(Id jobConstrainerEnablerId)
Registers for notification of a deleted job constrainer enabler.
|
void |
registerForDeletedJobConstrainerEnablers()
Registers for notification of deleted job constrainer enablers.
|
void |
registerForNewJobConstrainerEnablers()
Register for notifications of new job constrainer enablers.
|
void |
useFederatedFoundryView()
Federates the view for methods in this session.
|
void |
useIsolatedFoundryView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getFoundryId()
Foundry
Id
associated with this
session. Foundry Id
associated with this sessionmandatory
- This method must be implemented. Foundry getFoundry() throws OperationFailedException, PermissionDeniedException
Foundry
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canRegisterForJobConstrainerEnablerNotifications()
JobConstrainerEnabler
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 useFederatedFoundryView()
mandatory
- This method is must be implemented. void useIsolatedFoundryView()
mandatory
- This method is must be implemented. void registerForNewJobConstrainerEnablers() throws OperationFailedException, PermissionDeniedException
JobConstrainerEnablerReceiver.newJobConstrainerEnabler()
is
invoked when a new JobConstrainerEnabler
appears in
this foundry.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedJobConstrainerEnablers() throws OperationFailedException, PermissionDeniedException
JobConstrainerEnablerReceiver.changedJobConstrainerEnabler()
is invoked when a job constrainer enabler in this foundry is changed.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedJobConstrainerEnabler(Id jobConstrainerEnablerId) throws OperationFailedException, PermissionDeniedException
ProvisionableReceiver.changedJobConstrainerEnabler()
is
invoked when the specified job constrainer enabler in this foundry is
changed.jobConstrainerEnablerId
- the Id
of the
JobConstrainerEnabler
to monitorNullArgumentException
- jobConstrainerEnablerId
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedJobConstrainerEnablers() throws OperationFailedException, PermissionDeniedException
JobConstrainerEnablerReceiver.deletedJobConstrainerEnabler()
is invoked when a job constrainer enabler is deleted or removed from
this foundry.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedJobConstrainerEnabler(Id jobConstrainerEnablerId) throws OperationFailedException, PermissionDeniedException
JobConstrainerEnablerReceiver.deletedJobConstrainerEnabler()
is invoked when the specified job constrainer enabler is
deleted or removed from this foundry.jobConstrainerEnablerId
- the Id
of the
JobConstrainerEnabler
to monitorNullArgumentException
- jobConstrainerEnablerId
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented.