com.bea.wli.management.configuration
Class ProcessVariable

java.lang.Object
  extended by com.bea.wli.management.configuration.ProcessVariable
All Implemented Interfaces:
Serializable

public class ProcessVariable
extends Object
implements Serializable

Represents a process variable with its name and type (class)

See Also:
ProcessConfigurationMBean.getProcessVariable(java.lang.String), ProcessConfigurationMBean.getProcessVariables(), Serialized Form

Constructor Summary
ProcessVariable(String name, String type)
           
 
Method Summary
 String getName()
          Returns the name of the process variable
 String getType()
          Returns the type of the process variable.
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProcessVariable

public ProcessVariable(String name,
                       String type)
Method Detail

getName

public String getName()
Returns the name of the process variable


getType

public String getType()
Returns the type of the process variable. This method deliberately returns a String rather than a Class object, since the user of this API (e.g., the client) may not have the Class in its classpath.


toString

public String toString()
Overrides:
toString in class Object