FileDocCategorySizeDatePackage
ConfigChangeList.javaAPI DocGlassfish v2 API5172Fri May 04 22:33:34 BST 2007com.sun.enterprise.admin.event

ConfigChangeList

public class ConfigChangeList extends Object implements Serializable, SortedMap
List of configuration changes. A user interface feature allows users to apply changes after one or more edits to configuration attributes. This class keeps track of configuration changes.

Fields Summary
private Vector
names
private Vector
values
private HashMap
nameMap
Constructors Summary
public ConfigChangeList()
Create an empty ConfigChangeList.

        names = new Vector();
        values = new Vector();
        nameMap = new HashMap();
    
private ConfigChangeList(Vector names, Vector values, HashMap nameMap)

        this.names = names;
        this.values = values;
        this.nameMap = nameMap;
    
Methods Summary
public voidaddConfigChange(java.lang.String name, java.lang.Object value)
Add a config change to list. If a config change for the same property already exists, then the specified change value is added to the end of the list of changes. The name is the XPath of the attribute for which change is being addeed.

    
public voidclear()

    
public java.util.Comparatorcomparator()

        return null;
    
public booleancontainsKey(java.lang.Object obj)

        return false;
    
public booleancontainsValue(java.lang.Object obj)

        return false;
    
public java.util.SetentrySet()

        return null;
    
public java.lang.ObjectfirstKey()

        return null;
    
public java.lang.Objectget(java.lang.Object obj)

        return null;
    
public java.util.SortedMapheadMap(java.lang.Object obj)

        return null;
    
public booleanisEmpty()

        return true;
    
public java.util.SetkeySet()

        return null;
    
public java.lang.ObjectlastKey()

        return null;
    
public java.lang.Objectput(java.lang.Object obj, java.lang.Object obj1)

        return null;
    
public voidputAll(java.util.Map map)

    
public java.lang.Objectremove(java.lang.Object obj)

        return null;
    
public voidremoveConfigChange(java.lang.String name)
Remove all config changes for the specified name from the list. The name is the XPath of the attribute that needs to be removed.

    
public voidremoveConfigChange(java.lang.String name, java.lang.Object value)
Remove specified config change from the list.

    
public intsize()

        return 0;
    
public java.util.SortedMapsubMap(java.lang.Object obj, java.lang.Object obj1)

        return null;
    
public java.util.SortedMaptailMap(java.lang.Object obj)

        return null;
    
public java.util.Collectionvalues()

        return null;