Interface ISubscriberChangeEvent
-
- All Known Implementing Classes:
SubscriberChangeEvent
public interface ISubscriberChangeEventA change event that describes a change in a resource that is or was supervised by a subscriber.- Since:
- 3.0
- See Also:
ISubscriberChangeListener- Restriction:
- Clients are not intended to implement. Instead subclass
SubscriberChangeEvent.
-
-
Field Summary
Fields Modifier and Type Field Description static intNO_CHANGEDelta kind constant indicating that the resource has not been changed in any waystatic intROOT_ADDEDDelta kind constant (bit mask) indicating that a team provider has been configured on the resource.static intROOT_REMOVEDDelta kind constant (bit mask) indicating that a team provider has been de-configured on the resource.static intSYNC_CHANGEDDelta kind constant (bit mask) indicating that the synchronization state of a resource has changed.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetFlags()Return the flags that describe the type of change.IResourcegetResource()Return the resource whose state with respect to the subscriber has changed.SubscribergetSubscriber()Return the subscriber to which this change event applies.
-
-
-
Field Detail
-
NO_CHANGE
static final int NO_CHANGE
Delta kind constant indicating that the resource has not been changed in any way- See Also:
IResourceDelta.getKind(), Constant Field Values
-
SYNC_CHANGED
static final int SYNC_CHANGED
Delta kind constant (bit mask) indicating that the synchronization state of a resource has changed.- See Also:
getFlags(), Constant Field Values
-
ROOT_ADDED
static final int ROOT_ADDED
Delta kind constant (bit mask) indicating that a team provider has been configured on the resource.- See Also:
getFlags(), Constant Field Values
-
ROOT_REMOVED
static final int ROOT_REMOVED
Delta kind constant (bit mask) indicating that a team provider has been de-configured on the resource.- See Also:
getFlags(), Constant Field Values
-
-
Method Detail
-
getFlags
int getFlags()
Return the flags that describe the type of change. The returned value should be ANDed with the change type flags to determine whether the change event is of a particular type. For example,if (event.getFlags() & ISubscriberChangeEvent.SYNC_CHANGED) { // the sync info for the resource has changed }- Returns:
- the flags that describe the type of change
-
getResource
IResource getResource()
Return the resource whose state with respect to the subscriber has changed.- Returns:
- the resource whose state with respect to the subscriber has changed
-
getSubscriber
Subscriber getSubscriber()
Return the subscriber to which this change event applies.- Returns:
- the subscriber to which this change event applies
-
-