FileDocCategorySizeDatePackage
ConfigDeleteImpl.javaAPI DocGlassfish v2 API2959Fri May 04 22:31:18 BST 2007com.sun.enterprise.config.impl

ConfigDeleteImpl

public class ConfigDeleteImpl extends ConfigChangeImpl implements Serializable, com.sun.enterprise.config.ConfigDelete
A configuration change for an element. Holds xpath, list of changed attributes, their old and new values.

Fields Summary
Constructors Summary
public ConfigDeleteImpl(String xpath)

        this.xpath = xpath;
    
Methods Summary
public java.lang.StringgetConfigChangeType()

        return TYPE_DELETE;
    
public java.lang.StringgetName()

        return null; //FIXME
    
public java.lang.StringtoString()

        String ret = "delete xpath=" +xpath;
        return ret;