com.sun.n1.sps.model.component
Interface GeneratedVariableSettings


public interface GeneratedVariableSettings

A persistent, read only variable settings object used as a historical record of previous config generations. These can be thought of as a read-only snapshot of a component variable settings object.


Method Summary
 boolean containsVarValue(java.lang.String varName)
          Returns true if there is a value defined for the passed variable name, false otherwise.
 GeneratedVariableSettingsID getID()
          Returns the ID of this object.
 java.lang.String getName()
          Returns the name of this object.
 java.lang.String[] getVarNames()
          Returns the names of all variables defined by this object.
 java.lang.String getVarValue(java.lang.String varName)
          Returns the value for the passed variable name.
 

Method Detail

getVarValue

java.lang.String getVarValue(java.lang.String varName)
Returns the value for the passed variable name. If this object does not define a value, null is returned.

Parameters:
varName - the name of the variable to look up.
Returns:
the value for the passed variable name.

getVarNames

java.lang.String[] getVarNames()
Returns the names of all variables defined by this object.

Returns:
the names.

getID

GeneratedVariableSettingsID getID()
Returns the ID of this object.

Returns:
the ID

getName

java.lang.String getName()
Returns the name of this object. This is typcially the same as the name of the component configuration from which this object is derived.

Returns:
the name.

containsVarValue

boolean containsVarValue(java.lang.String varName)
Returns true if there is a value defined for the passed variable name, false otherwise.

Parameters:
varName - the name of the variable to look up.
Returns:
true if a value is defined, false otherwise.