public interface BrokerConstrainerEnablerNotificationSession extends OsidSession
This session defines methods to receive notifications on adds/changes
to BrokerConstrainerEnabler
objects in this
Distributor.
This also includes existing
BrokerConstrainerEnablers
that may appear or disappear due to
changes in the Distributor
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
BrokerConstrainerEnablerLookupSession.
Modifier and Type | Method and Description |
---|---|
boolean |
canRegisterForBrokerConstrainerEnablerNotifications()
Tests if this user can register for
BrokerConstrainerEnabler
notifications. |
Distributor |
getDistributor()
Gets the
Distributor associated with this session. |
Id |
getDistributorId()
Gets the
Distributor Id associated with
this session. |
void |
registerForChangedBrokerConstrainerEnabler(Id brokerConstrainerEnablerId)
Registers for notification of an updated broker constrainer enabler.
|
void |
registerForChangedBrokerConstrainerEnablers()
Registers for notification of updated distributor enabelrs.
|
void |
registerForDeletedBrokerConstrainerEnabler(Id brokerConstrainerEnablerId)
Registers for notification of a deleted broker constrainer enabler.
|
void |
registerForDeletedBrokerConstrainerEnablers()
Registers for notification of deleted broker constrainer enablers.
|
void |
registerForNewBrokerConstrainerEnablers()
Register for notifications of new broker constrainer enablers.
|
void |
useFederatedDistributorView()
Federates the view for methods in this session.
|
void |
useIsolatedDistributorView()
Isolates the view for methods in this session.
|
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactions
close
Id getDistributorId()
Distributor
Id
associated with
this session. Distributor Id
associated with this sessionmandatory
- This method must be implemented. Distributor getDistributor() throws OperationFailedException, PermissionDeniedException
Distributor
associated with this session.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. boolean canRegisterForBrokerConstrainerEnablerNotifications()
BrokerConstrainerEnabler
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 useFederatedDistributorView()
mandatory
- This method is must be implemented. void useIsolatedDistributorView()
mandatory
- This method is must be implemented. void registerForNewBrokerConstrainerEnablers() throws OperationFailedException, PermissionDeniedException
BrokerConstrainerEnablerReceiver.newBrokerConstrainerEnabler()
is invoked when a new BrokerConstrainerEnabler
appears
in this distributor.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedBrokerConstrainerEnablers() throws OperationFailedException, PermissionDeniedException
BrokerConstrainerEnablerReceiver.changedBrokerConstrainerEnabler()
is invoked when a broker constrainer enabler in this
distributor is changed.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForChangedBrokerConstrainerEnabler(Id brokerConstrainerEnablerId) throws OperationFailedException, PermissionDeniedException
ProvisionableReceiver.changedBrokerConstrainerEnabler()
is invoked when the specified broker constrainer enabler in this
distributor is changed.brokerConstrainerEnablerId
- the Id
of the
BrokerConstrainerEnabler
to monitorNullArgumentException
-
brokerConstrainerEnablerId
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedBrokerConstrainerEnablers() throws OperationFailedException, PermissionDeniedException
BrokerConstrainerEnablerReceiver.deletedBrokerConstrainerEnabler()
is invoked when a broker constrainer enabler is deleted or
removed from this distributor.OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented. void registerForDeletedBrokerConstrainerEnabler(Id brokerConstrainerEnablerId) throws OperationFailedException, PermissionDeniedException
BrokerConstrainerEnablerReceiver.deletedBrokerConstrainerEnabler()
is invoked when the specified broker constrainer enabler is
deleted or removed from this distributor.brokerConstrainerEnablerId
- the Id
of the
BrokerConstrainerEnabler
to monitorNullArgumentException
-
brokerConstrainerEnablerId
is null
OperationFailedException
- unable to complete requestPermissionDeniedException
- authorization failuremandatory
- This method must be implemented.