ProcessVariable Class

com.bea.wli.management.configuration
ProcessVariable Class

public class ProcessVariable

    extends Object
    implements Serializable

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

Related Topics

ProcessConfigurationMBean.getProcessVariable(String)
ProcessConfigurationMBean.getProcessVariables()


Hierarchy
Object
  ProcessVariable
All Implemented Interfaces

Serializable

Constructor Summary

ProcessVariable(String name, String type)

 

Method Summary

public String
getName()
Returns the name of the process variable
public String
getType()
Returns the type of the process variable.
public String
toString()
 
Methods from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
   

Constructor Detail

ProcessVariable

public ProcessVariable(String name, 
                       String type)
 

Method Detail

getName() Method

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


getType() Method

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() Method

public String toString()
Overrides
Object.toString()