View Javadoc

1   package org.modeshape.jcr;
2   
3   import org.modeshape.graph.observe.Observer;
4   import org.modeshape.graph.property.Path;
5   
6   /**
7    * An interface for observers of the "/jcr:system" content.
8    */
9   interface JcrSystemObserver extends Observer {
10  
11      /**
12       * Get the (absolute) path in the "/jcr:system" subgraph below which this observer is interested in changes.
13       * 
14       * @return the observed path in the system content; may not be null
15       */
16      Path getObservedPath();
17  
18  }