Interface JackrabbitObservationManager
-
- All Superinterfaces:
ObservationManager
public interface JackrabbitObservationManager extends ObservationManager
Jackrabbit specific extensions toObservationManager
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addEventListener(EventListener listener, JackrabbitEventFilter filter)
Adds an event listener that listens for the events specified by the passedJackrabbitEventFilter
.-
Methods inherited from interface javax.jcr.observation.ObservationManager
addEventListener, getEventJournal, getEventJournal, getRegisteredEventListeners, removeEventListener, setUserData
-
-
-
-
Method Detail
-
addEventListener
void addEventListener(EventListener listener, JackrabbitEventFilter filter) throws RepositoryException
Adds an event listener that listens for the events specified by the passedJackrabbitEventFilter
.In addition to the
EventFilter
, the set of events reported will be further filtered by the access rights of the currentSession
.See
JackrabbitEventFilter
for a description of the filtering parameters available.The filter of an already-registered
EventListener
can be changed at runtime by re-registering the sameEventListener
object (i.e. the same actual Java object) with a new filter. 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 parts of a workspace are observable, may also be subject to implementation-specific restrictions. For example, in some repositories observation of changes in the
jcr:system
subgraph may not be supported.- Parameters:
listener
- anEventListener
object.filter
- anJackrabbitEventFilter
object.- Throws:
RepositoryException
- If an error occurs.
-
-