public interface Event
int value.| Modifier and Type | Field and Description | 
|---|---|
| static int | NODE_ADDEDAn event of this type is generated when a node is added. | 
| static int | NODE_REMOVEDAn event of this type is generated when a node is removed. | 
| static int | PROPERTY_ADDEDAn event of this type is generated when a property is added. | 
| static int | PROPERTY_CHANGEDAn event of this type is generated when a property is changed. | 
| static int | PROPERTY_REMOVEDAn event of this type is generated when a property is removed. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getPath()Returns the absolute path of the parent node connected with this event. | 
| int | getType()Returns the type of this event: a constant defined by this interface. | 
| java.lang.String | getUserID()Returns the user ID connected with this event. | 
static final int NODE_ADDED
static final int NODE_REMOVED
static final int PROPERTY_ADDED
static final int PROPERTY_REMOVED
static final int PROPERTY_CHANGED
int getType()
NODE_ADDEDNODE_REMOVEDPROPERTY_ADDEDPROPERTY_REMOVEDPROPERTY_CHANGEDjava.lang.String getPath()
                  throws RepositoryException
NODE_ADDED then this method returns the absolute path of the node that was added.NODE_REMOVED then this method returns the absolute path of the node that was removed.PROPERTY_ADDED then this method returns the absolute path of the property that was added.PROPERTY_REMOVED then this method returns the absolute path of the property that was removed.PROPERTY_CHANGED then this method returns the absolute path of of the changed property.RepositoryException - if an error occurs.java.lang.String getUserID()
String.