Methods Summary |
---|
public abstract java.lang.String | getConfigChangeType()can be "update" or "delete" or "add"
|
public long | getGlobalLastModified()
return _lastModified;
|
public abstract java.lang.String | getName()
|
public java.lang.String | getParentXPath()currently makes sense only for add.
returns null in other cases
return this.parentXpath;
|
public java.lang.String | getXPath()returns childXPath for add, set and update and delete
/*
public static final String TYPE_ADD = "add";
public static final String TYPE_UPDATE = "update";
public static final String TYPE_DELETE = "delete";
public static final String TYPE_SET = "set";
*/
return this.xpath;
|
public void | setGlobalLastModified(long lm)
_lastModified = lm;
|