ConfigSetImplpublic class ConfigSetImpl extends ConfigChangeImpl implements Serializable, com.sun.enterprise.config.ConfigSetA configuration change for an element. Holds xpath, list of changed
attributes, their old and new values. |
Fields Summary |
---|
private Object | cb | private Object[] | cbArray | private String | name |
Constructors Summary |
---|
public ConfigSetImpl(String parentXpath, String name, Object cb, Object[] cbArray)
this.parentXpath = parentXpath;
this.xpath = parentXpath; // temporarily add this to xpath also
// since it is being used in notification
this.cb = cb;
this.cbArray = cbArray;
this.name = name;
|
|