Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jbpm.workflow.execution
Interface AttributeInstance  view AttributeInstance download AttributeInstance.java

All Superinterfaces:
java.io.Serializable

public interface AttributeInstance
extends java.io.Serializable

is a process-variable associated with one process instance. The value can be changed during the execution of the flow in following ways :


Method Summary
 org.jbpm.workflow.definition.Attribute getAttribute()
          is the org.jbpm.workflow.definition.Attribute of this AttributeInstance.
 java.lang.Long getId()
          the meaningless primary-key for this object.
 Flow getScope()
          is the Flow to which this AttributeInstance is associated.
 java.lang.Object getValue()
          is the java-object-value for this AttributeInstance.
 java.lang.String getValueText()
          gets the text as it is store in the database in serialized form.
 

Method Detail

getId

public java.lang.Long getId()
the meaningless primary-key for this object.


getValue

public java.lang.Object getValue()
is the java-object-value for this AttributeInstance.


getValueText

public java.lang.String getValueText()
gets the text as it is store in the database in serialized form.


getAttribute

public org.jbpm.workflow.definition.Attribute getAttribute()
is the org.jbpm.workflow.definition.Attribute of this AttributeInstance.


getScope

public Flow getScope()
is the Flow to which this AttributeInstance is associated.