|
|||||||||
| Home >> All >> org >> jbpm >> workflow >> [ execution overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.jbpm.workflow.execution
Interface AttributeInstance

- 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 :
- field input : In the org.jbpm.workflow.definition.ProcessDefinition,
a org.jbpm.workflow.definition.Field associates an attribute with an
Activity. When an actor performs thatActivity, it has to provide input for the attribute. The value that is provided by the actor is stored in the AttributeInstance. - interaction : In every
org.jbpm.workflow.delegation.Interaction-implementation the implementor has read & write access to all AttributeInstances through theorg.jbpm.workflow.delegation.InteractionContext. - role association : A special kind of AttributeInstances is the role-attribute-instance. They are specified by the actorName-property in the activity. If an actor performs an activity, the attribute-instance with name actorName is set to the actor.
| 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.
|
|||||||||
| Home >> All >> org >> jbpm >> workflow >> [ execution overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC