Interface ObservationManager
-
- All Known Subinterfaces:
JackrabbitObservationManager
public interface ObservationManagerThe ObservationManager object.Acquired via
. Allows for the registration and deregistration of event listeners.Workspace.getObservationManager()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddEventListener(EventListener listener, int eventTypes, java.lang.String absPath, boolean isDeep, java.lang.String[] uuid, java.lang.String[] nodeTypeName, boolean noLocal)Adds an event listener that listens for the specifiedeventTypes(a combination of one or more event types encoded as a bit mask value).EventJournalgetEventJournal()Retrieves the event journal for this workspace.EventJournalgetEventJournal(int eventTypes, java.lang.String absPath, boolean isDeep, java.lang.String[] uuid, java.lang.String[] nodeTypeName)Retrieves the event journal for this workspace.EventListenerIteratorgetRegisteredEventListeners()Returns all event listeners that have been registered through this session.voidremoveEventListener(EventListener listener)Deregisters an event listener.voidsetUserData(java.lang.String userData)Sets the user data information that will be returned byEvent.getUserData().
-
-
-
Method Detail
-
addEventListener
void addEventListener(EventListener listener, int eventTypes, java.lang.String absPath, boolean isDeep, java.lang.String[] uuid, java.lang.String[] nodeTypeName, boolean noLocal) throws RepositoryException
Adds an event listener that listens for the specifiedeventTypes(a combination of one or more event types encoded as a bit mask value).The set of events will be further filtered by the access rights of the current
Sessionas well as the restrictions specified by the parameters of this method. These restrictions are stated in terms of characteristics of the associated parent node of the event.The associated parent node of an event is the parent node of the item at (or formerly at) the path returned by
Event.getPath(). The following restrictions are available:-
absPath,isDeep: Only events whose associated parent node is atabsPath(or within its subgraph, ifisDeepistrue) will be received. It is permissible to register a listener for a path where no node currently exists. -
uuid: Only events whose associated parent node has one of the identifiers in this list will be received. If his parameter isnullthen no identifier-related restriction is placed on events received. Note that specifying an empty array instead ofnullwould result in no nodes being listened to. The term "UUID" is used for compatibility with JCR 1.0. -
nodeTypeName: Only events whose associated parent node has one of the node types (or a subtype of one of the node types) in this list will be received. If his parameter isnullthen no node type-related restriction is placed on events received. Note that specifying an empty array instead ofnullwould result in no nodes types being listened to.
Additionally, if
noLocalistrue, then events generated by the session through which the listener was registered are ignored. Otherwise, they are not ignored.The filters of an already-registered
EventListenercan be changed at runtime by re-registering the sameEventListenerobject (i.e. the same actual Java object) with a new set of filter arguments. The implementation must ensure that no events are lost during the changeover.In addition to the filters placed on a listener above, the scope of observation support, in terms of which subgraphs are observable, may also be subject to implementation-specific restrictions. For example, in some repositories observation of changes in the
jcr:systemsubgraph may not be supported- Parameters:
listener- anEventListenerobject.eventTypes- A combination of one or more event type constants encoded as a bitmask.absPath- an absolute path.isDeep- aboolean.uuid- array of identifiers.nodeTypeName- array of node type names.noLocal- aboolean.- Throws:
RepositoryException- If an error occurs.
-
-
removeEventListener
void removeEventListener(EventListener listener) throws RepositoryException
Deregisters an event listener.A listener may be deregistered while it is being executed. The deregistration method will block until the listener has completed executing. An exception to this rule is a listener which deregisters itself from within the
onEventmethod. In this case, the deregistration method returns immediately, but deregistration will effectively be delayed until the listener completes.- Parameters:
listener- The listener to deregister.- Throws:
RepositoryException- If an error occurs.
-
getRegisteredEventListeners
EventListenerIterator getRegisteredEventListeners() throws RepositoryException
Returns all event listeners that have been registered through this session. If no listeners have been registered, an empty iterator is returned.- Returns:
- an
EventListenerIterator. - Throws:
RepositoryException- If an error occurs
-
setUserData
void setUserData(java.lang.String userData) throws RepositoryExceptionSets the user data information that will be returned byEvent.getUserData().- Parameters:
userData- the user data- Throws:
RepositoryException- if an error occurs
-
getEventJournal
EventJournal getEventJournal() throws RepositoryException
Retrieves the event journal for this workspace. If journaled observation is not supported for this workspace,nullis returned. Events recorded in theEventJournalinstance will be filtered according to the current session's access rights as well as any additional restrictions specified through implemention-specific configuration.- Returns:
- an
EventJournalornull. - Throws:
RepositoryException- if an error occurs
-
getEventJournal
EventJournal getEventJournal(int eventTypes, java.lang.String absPath, boolean isDeep, java.lang.String[] uuid, java.lang.String[] nodeTypeName) throws RepositoryException
Retrieves the event journal for this workspace.If journaled observation is not supported for this workspace,
nullis returned.Events returned in the
EventJournalinstance will be filtered according to the parameters of this method, the current session's access restrictions as well as any additional restrictions specified through implemention-specific configuration.The parameters of this method filter the event set in the same way as they do in
addEventListener(javax.jcr.observation.EventListener, int, java.lang.String, boolean, java.lang.String[], java.lang.String[], boolean).- Parameters:
eventTypes- A combination of one or more event type constants encoded as a bitmask.absPath- an absolute path.isDeep- aboolean.uuid- array of identifiers.nodeTypeName- array of node type names.- Returns:
- an
EventJournalornull. - Throws:
RepositoryException- If an error occurs.
-
-