Methods Summary |
---|
public void | addEvent(AdminEvent event)Adds an event to the event stack.
_events.add(event);
|
public java.util.List | getConfigChangeList()Returns the config changes associated with this event.
return _configChangeList;
|
public com.sun.enterprise.config.ConfigContext | getConfigContext()Returns the admin config context associated with this event.
return _ctx;
|
public java.util.List | getEvents()Returns all events from the stack.
return _events;
|
public java.lang.String | getTarget()Returns the target for this event.
return _target;
|
public java.lang.String | getXPath()
return _xPath;
|
public void | resetEvents()resets the events in the event stack.
_events.clear();
|
public void | setConfigChangeList(java.util.List list)Sets the config changes for this event.
_configChangeList = list;
|
public void | setConfigContext(com.sun.enterprise.config.ConfigContext ctx)Sets the admin config context to the event stack.
_ctx = ctx;
|
public void | setTarget(java.lang.String target)Sets the target destination for this event.
_target = target;
|
public void | setXPath(java.lang.String xPath)
_xPath = xPath;
|