Serialized Form


Package org.jbpm

Class org.jbpm.JbpmConfiguration extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

objectFactory

ObjectFactory objectFactory

resourceName

String resourceName

jobExecutor

JobExecutor jobExecutor

isClosed

boolean isClosed

Class org.jbpm.JbpmContext extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

services

Services services

objectFactory

ObjectFactory objectFactory

autoSaveProcessInstances

Set<E> autoSaveProcessInstances

isClosed

boolean isClosed

Class org.jbpm.JbpmException extends RuntimeException implements Serializable

serialVersionUID: 1L


Package org.jbpm.bytes

Class org.jbpm.bytes.ByteArray extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

name

String name

byteBlocks

List<E> byteBlocks

Package org.jbpm.calendar

Class org.jbpm.calendar.BusinessCalendar extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

weekDays

Day[] weekDays

holidays

List<E> holidays

Class org.jbpm.calendar.Day extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

dayParts

DayPart[] dayParts

businessCalendar

BusinessCalendar businessCalendar

Class org.jbpm.calendar.DayPart extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

startHour

int startHour

startMinute

int startMinute

endHour

int endHour

endMinute

int endMinute

day

Day day

index

int index

Class org.jbpm.calendar.Duration extends Object implements Serializable

serialVersionUID: 2L

Serialized Fields

field

int field

amount

long amount

isBusinessTime

boolean isBusinessTime

Class org.jbpm.calendar.Holiday extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

startDate

Date startDate

endDate

Date endDate

Package org.jbpm.command

Class org.jbpm.command.AbstractBaseCommand extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.command.AbstractCancelCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 1L

Class org.jbpm.command.AbstractGetObjectBaseCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

includeAllVariables

boolean includeAllVariables
if true, all process variables in the context (process instance / task) are prefetched too


variablesToInclude

String[] variablesToInclude
specify the names of the variables to prefetch

Class org.jbpm.command.AbstractProcessInstanceBaseCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

log

org.apache.commons.logging.Log log

processInstanceIds

long[] processInstanceIds

processName

String processName

processVersion

int processVersion

onlyRunning

boolean onlyRunning

operateOnSingleObject

boolean operateOnSingleObject

Class org.jbpm.command.AbstractTokenBaseCommand extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

log

org.apache.commons.logging.Log log

tokenIds

long[] tokenIds

processName

String processName

stateName

String stateName

processVersion

int processVersion

operateOnSingleObject

boolean operateOnSingleObject

Class org.jbpm.command.AsynchronousCommand extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

command

Command command
Deprecated. 

retryCount

int retryCount
Deprecated. 

Class org.jbpm.command.BatchSignalCommand extends AbstractTokenBaseCommand implements Serializable

serialVersionUID: -4330623193546102772L

Serialized Fields

inStateAtLeastSince

Date inStateAtLeastSince
if set, only tokens which are started after this date are signaled (interesting to implement some timeout for example)


transitionName

String transitionName

Class org.jbpm.command.CancelProcessInstanceCommand extends AbstractCancelCommand implements Serializable

serialVersionUID: 7145293049356621597L

Serialized Fields

processInstanceId

long processInstanceId

Class org.jbpm.command.CancelTokenCommand extends AbstractCancelCommand implements Serializable

serialVersionUID: 7145293049356621597L

Serialized Fields

tokenId

long tokenId

Class org.jbpm.command.CancelWorkOnTaskCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: -172457633891242288L

Serialized Fields

taskInstanceId

long taskInstanceId

Class org.jbpm.command.ChangeProcessInstanceVersionCommand extends AbstractProcessInstanceBaseCommand implements Serializable

serialVersionUID: 2277080393930008224L

Serialized Fields

newVersion

int newVersion
new process definition version. if <=0, the latest process definition is used


nodeNameMapping

Map<K,V> nodeNameMapping
maps node names in the old process definition to node names in the new process definition. if there is no entry for a node, the old node name is applied.


taskNameMapping

Map<K,V> taskNameMapping
maps task names in the old process definition to tasks names in the new process definition. if there is no entry for a task, the old task name is applied.

Class org.jbpm.command.CompositeCommand extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

commands

List<E> commands

Class org.jbpm.command.DeleteProcessDefinitionCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -1908847549444051495L

Serialized Fields

id

long id

Class org.jbpm.command.DeployProcessCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -5861811926680981061L

Serialized Fields

xml

String xml

par

byte[] par

Class org.jbpm.command.ExecuteJobsCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: -2457066688404533959L

Class org.jbpm.command.GetProcessDefinitionCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -1908847549444051495L

Serialized Fields

version

int version

name

String name

Class org.jbpm.command.GetProcessDefinitionsCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -1908847549444051495L

Serialized Fields

onlyLatest

boolean onlyLatest

Class org.jbpm.command.GetProcessInstanceCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -8436697080972165601L

Serialized Fields

processInstanceId

long processInstanceId

tokenId

long tokenId

taskInstanceId

long taskInstanceId

Class org.jbpm.command.GetProcessInstanceLogCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: -2812852941518870502L

Serialized Fields

processInstanceId

long processInstanceId

Class org.jbpm.command.GetProcessInstancesCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -5601050489405283851L

Serialized Fields

onlyRunning

boolean onlyRunning

fromStartDate

Date fromStartDate

untilStartDate

Date untilStartDate

processDefinitionName

String processDefinitionName

processInstanceId

long processInstanceId

stateName

String stateName

version

String version

Class org.jbpm.command.GetTaskInstanceCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -8436697080972165601L

Serialized Fields

taskInstanceId

long taskInstanceId

tokenId

long tokenId
if given, all tasks for this token are searched and a List of TaskInstances is given


processInstanceId

long processInstanceId
if given, all tasks for this process are searched and a List of TaskInstances is given

Class org.jbpm.command.GetTaskListCommand extends AbstractGetObjectBaseCommand implements Serializable

serialVersionUID: -1627380259541998349L

Serialized Fields

actor

String[] actor

Class org.jbpm.command.NewProcessInstanceCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

processDefinitionName

String processDefinitionName

processDefinitionId

long processDefinitionId

actorId

String actorId

variables

Map<K,V> variables

createStartTask

boolean createStartTask

key

String key

Class org.jbpm.command.ResumeProcessInstanceCommand extends AbstractProcessInstanceBaseCommand implements Serializable

serialVersionUID: 1L

Class org.jbpm.command.ResumeTokenCommand extends AbstractTokenBaseCommand implements Serializable

serialVersionUID: 1L

Class org.jbpm.command.SignalCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

tokenId

long tokenId

transitionName

String transitionName

expectedStateName

String expectedStateName
if given, it is checked if the state is as expected. If not, a exception is thrown Ignored if null


previousToken

Token previousToken

previousProcessInstance

ProcessInstance previousProcessInstance

variables

Map<K,V> variables

Class org.jbpm.command.StartProcessInstanceCommand extends NewProcessInstanceCommand implements Serializable

serialVersionUID: -2428234069404269048L

Serialized Fields

startTransitionName

String startTransitionName
this transition name is used for signalling (if null, the default transition is used)

Class org.jbpm.command.StartWorkOnTaskCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 53004484398726736L

Serialized Fields

taskInstanceId

long taskInstanceId

overwriteSwimlane

boolean overwriteSwimlane

actorId

String actorId

Class org.jbpm.command.SuspendProcessInstanceCommand extends AbstractProcessInstanceBaseCommand implements Serializable

serialVersionUID: 1L

Class org.jbpm.command.SuspendTokenCommand extends AbstractTokenBaseCommand implements Serializable

serialVersionUID: 1L

Class org.jbpm.command.TaskInstanceEndCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 5721341060757950369L

Serialized Fields

taskInstanceId

long taskInstanceId

transitionName

String transitionName

variables

Map<K,V> variables

previoustaskInstance

TaskInstance previoustaskInstance

Class org.jbpm.command.UnlockTokenCommand extends AbstractTokenBaseCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

lockOwner

String lockOwner

Class org.jbpm.command.VariablesCommand extends AbstractBaseCommand implements Serializable

serialVersionUID: 1L

Serialized Fields

tokenId

long tokenId

taskInstanceId

long taskInstanceId

variables

Map<K,V> variables

previousProcessInstance

ProcessInstance previousProcessInstance

previousToken

Token previousToken

previousTaskInstance

TaskInstance previousTaskInstance

Package org.jbpm.command.impl

Class org.jbpm.command.impl.CommandServiceImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

jbpmConfiguration

JbpmConfiguration jbpmConfiguration

Package org.jbpm.configuration

Class org.jbpm.configuration.AbstractObjectInfo extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

singleton

boolean singleton

Class org.jbpm.configuration.BeanInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

className

String className

constructorInfo

ConstructorInfo constructorInfo

fieldInfos

FieldInfo[] fieldInfos

propertyInfos

PropertyInfo[] propertyInfos

Class org.jbpm.configuration.BooleanInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

b

Boolean b

Class org.jbpm.configuration.CharacterInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Character value

Class org.jbpm.configuration.ConfigurationException extends JbpmException implements Serializable

serialVersionUID: 1L

Class org.jbpm.configuration.ConstructorInfo extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

className

String className

factoryRefName

String factoryRefName

factoryClassName

String factoryClassName

factoryMethodName

String factoryMethodName

parameterClassNames

String[] parameterClassNames

parameterInfos

ObjectInfo[] parameterInfos

Class org.jbpm.configuration.DoubleInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Double value

Class org.jbpm.configuration.FieldInfo extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

fieldName

String fieldName

fieldValueInfo

ObjectInfo fieldValueInfo

Class org.jbpm.configuration.FloatInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Float value

Class org.jbpm.configuration.IntegerInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Integer value

Class org.jbpm.configuration.JbpmContextInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

serviceFactoryInfos

ObjectInfo[] serviceFactoryInfos

serviceFactories

Map<K,V> serviceFactories

saveOperationInfos

ObjectInfo[] saveOperationInfos

saveOperations

List<E> saveOperations

Class org.jbpm.configuration.JbpmTypeObjectInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

typeMatcherObjectInfo

ObjectInfo typeMatcherObjectInfo

converter

Converter converter

variableInstanceClass

Class<T> variableInstanceClass

Class org.jbpm.configuration.ListInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

elementInfos

ObjectInfo[] elementInfos

Class org.jbpm.configuration.LongInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Long value

Class org.jbpm.configuration.MapInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

keyInfos

ObjectInfo[] keyInfos

valueInfos

ObjectInfo[] valueInfos

Class org.jbpm.configuration.NullInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Class org.jbpm.configuration.ObjectFactoryImpl extends Object implements Serializable

serialVersionUID: 2L

Serialized Fields

namedObjectInfos

Map<K,V> namedObjectInfos

singletons

Map<K,V> singletons

Class org.jbpm.configuration.ObjectFactoryParser extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

mappings

Map<K,V> mappings

namedObjectInfos

Map<K,V> namedObjectInfos

Class org.jbpm.configuration.PropertyInfo extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

setterMethodName

String setterMethodName

propertyValueInfo

ObjectInfo propertyValueInfo

Class org.jbpm.configuration.RefInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

bean

String bean

Class org.jbpm.configuration.SetInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

elementInfos

ObjectInfo[] elementInfos

Class org.jbpm.configuration.StringInfo extends AbstractObjectInfo implements Serializable

serialVersionUID: 1L

Serialized Fields

s

String s

Class org.jbpm.configuration.ValueInfo extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

value

Object value

Package org.jbpm.context.def

Class org.jbpm.context.def.Access extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

access

String access

Class org.jbpm.context.def.ContextDefinition extends ModuleDefinition implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.def.VariableAccess extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

variableName

String variableName

access

Access access

mappedName

String mappedName

Package org.jbpm.context.exe

Class org.jbpm.context.exe.ContextInstance extends ModuleInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

tokenVariableMaps

Map<K,V> tokenVariableMaps

Class org.jbpm.context.exe.TokenVariableMap extends VariableContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

token

Token token

contextInstance

ContextInstance contextInstance

Class org.jbpm.context.exe.VariableContainer extends Object implements Serializable

serialVersionUID: 520258491083406913L

Serialized Fields

variableInstances

Map<K,V> variableInstances

Class org.jbpm.context.exe.VariableInstance extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

name

String name

token

Token token

tokenVariableMap

TokenVariableMap tokenVariableMap

processInstance

ProcessInstance processInstance

converter

Converter converter

valueCache

Object valueCache

isValueCached

boolean isValueCached

Package org.jbpm.context.exe.converter

Class org.jbpm.context.exe.converter.BooleanToStringConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.BytesToByteArrayConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.ByteToLongConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.CharacterToStringConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.DateToLongConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.DoubleToStringConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.FloatToDoubleConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.FloatToStringConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.IntegerToLongConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.SerializableToByteArrayConverter extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.converter.ShortToLongConverter extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.context.exe.matcher

Class org.jbpm.context.exe.matcher.ClassNameMatcher extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

className

String className

Class org.jbpm.context.exe.matcher.Ejb3Matcher extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.matcher.HibernateLongIdMatcher extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.matcher.HibernateStringIdMatcher extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.matcher.JcrNodeMatcher extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.matcher.SerializableMatcher extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.context.exe.variableinstance

Class org.jbpm.context.exe.variableinstance.ByteArrayInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

ByteArray value

Class org.jbpm.context.exe.variableinstance.DateInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Date value

Class org.jbpm.context.exe.variableinstance.DoubleInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Double value

Class org.jbpm.context.exe.variableinstance.Ejb3Instance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

id

Long id

className

String className

Class org.jbpm.context.exe.variableinstance.HibernateLongInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Object value

Class org.jbpm.context.exe.variableinstance.HibernateStringInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Object value

Class org.jbpm.context.exe.variableinstance.JcrNodeInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

repository

String repository

workspace

String workspace

path

String path

Class org.jbpm.context.exe.variableinstance.LongInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

Long value

Class org.jbpm.context.exe.variableinstance.NullInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.exe.variableinstance.StringInstance extends VariableInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

value

String value

Class org.jbpm.context.exe.variableinstance.UnpersistableInstance extends VariableInstance implements Serializable

serialVersionUID: 1L


Package org.jbpm.context.log

Class org.jbpm.context.log.VariableCreateLog extends VariableLog implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.log.VariableDeleteLog extends VariableLog implements Serializable

serialVersionUID: 1L

Class org.jbpm.context.log.VariableLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

variableInstance

VariableInstance variableInstance

Class org.jbpm.context.log.VariableUpdateLog extends VariableLog implements Serializable

serialVersionUID: 1L


Package org.jbpm.context.log.variableinstance

Class org.jbpm.context.log.variableinstance.ByteArrayUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

ByteArray oldValue

newValue

ByteArray newValue

Class org.jbpm.context.log.variableinstance.DateUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

Date oldValue

newValue

Date newValue

Class org.jbpm.context.log.variableinstance.DoubleUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

Double oldValue

newValue

Double newValue

Class org.jbpm.context.log.variableinstance.HibernateLongUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

Object oldValue

newValue

Object newValue

Class org.jbpm.context.log.variableinstance.HibernateStringUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

Object oldValue

newValue

Object newValue

Class org.jbpm.context.log.variableinstance.LongUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

Long oldValue

newValue

Long newValue

Class org.jbpm.context.log.variableinstance.StringUpdateLog extends VariableUpdateLog implements Serializable

serialVersionUID: 1L

Serialized Fields

oldValue

String oldValue

newValue

String newValue

Package org.jbpm.db.hibernate

Class org.jbpm.db.hibernate.AccessType extends org.hibernate.type.ImmutableType implements Serializable

serialVersionUID: 1L

Class org.jbpm.db.hibernate.ConverterEnumType extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.db.hibernate.LimitedStringType extends org.hibernate.type.StringType implements Serializable

serialVersionUID: 1L

Serialized Fields

limit

int limit

Class org.jbpm.db.hibernate.LimitedTextType extends org.hibernate.type.TextType implements Serializable

serialVersionUID: 1L

Serialized Fields

limit

int limit

Class org.jbpm.db.hibernate.SybaseTextType extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.file.def

Class org.jbpm.file.def.FileDefinition extends ModuleDefinition implements Serializable

serialVersionUID: 1L

Serialized Fields

dir

String dir

processFiles

Map<K,V> processFiles

Package org.jbpm.graph.action

Class org.jbpm.graph.action.MailAction extends Action implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.action.Script extends Action implements Serializable

serialVersionUID: 1L

Serialized Fields

expression

String expression

variableAccesses

Set<E> variableAccesses

Class org.jbpm.graph.action.SeamedAction extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

expression

String expression

Package org.jbpm.graph.def

Class org.jbpm.graph.def.Action extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

name

String name

isPropagationAllowed

boolean isPropagationAllowed

isAsync

boolean isAsync

isAsyncExclusive

boolean isAsyncExclusive

referencedAction

Action referencedAction

actionDelegation

Delegation actionDelegation

actionExpression

String actionExpression

event

Event event

processDefinition

ProcessDefinition processDefinition

Class org.jbpm.graph.def.DelegationException extends JbpmException implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.def.Event extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

eventType

String eventType

graphElement

GraphElement graphElement

actions

List<E> actions

Class org.jbpm.graph.def.EventCallback extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.def.ExceptionHandler extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

exceptionClassName

String exceptionClassName

graphElement

GraphElement graphElement

actions

List<E> actions

Class org.jbpm.graph.def.GraphElement extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

name

String name

description

String description

processDefinition

ProcessDefinition processDefinition

events

Map<K,V> events

exceptionHandlers

List<E> exceptionHandlers

Class org.jbpm.graph.def.Node extends GraphElement implements Serializable

serialVersionUID: 1L

Serialized Fields

leavingTransitions

List<E> leavingTransitions

arrivingTransitions

Set<E> arrivingTransitions

action

Action action

superState

SuperState superState

isAsync

boolean isAsync

isAsyncExclusive

boolean isAsyncExclusive

Class org.jbpm.graph.def.Node.NodeType extends Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

private Object readResolve()
                    throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

name

String name

Class org.jbpm.graph.def.ProcessDefinition extends GraphElement implements Serializable

serialVersionUID: 1L

Serialized Fields

version

int version

isTerminationImplicit

boolean isTerminationImplicit

startState

Node startState

nodes

List<E> nodes

actions

Map<K,V> actions

definitions

Map<K,V> definitions

Class org.jbpm.graph.def.SuperState extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

nodes

List<E> nodes

Class org.jbpm.graph.def.Transition extends GraphElement implements Serializable

serialVersionUID: 1L

Serialized Fields

from

Node from

to

Node to

condition

String condition

Package org.jbpm.graph.exe

Class org.jbpm.graph.exe.Comment extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

actorId

String actorId

time

Date time

message

String message

token

Token token

taskInstance

TaskInstance taskInstance

Class org.jbpm.graph.exe.ProcessInstance extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

key

String key

start

Date start

end

Date end

processDefinition

ProcessDefinition processDefinition

rootToken

Token rootToken

superProcessToken

Token superProcessToken

isSuspended

boolean isSuspended

instances

Map<K,V> instances

transientInstances

Map<K,V> transientInstances

runtimeActions

List<E> runtimeActions

cascadeProcessInstances

List<E> cascadeProcessInstances
not persisted

Class org.jbpm.graph.exe.RuntimeAction extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

processInstance

ProcessInstance processInstance

graphElement

GraphElement graphElement

eventType

String eventType

action

Action action

Class org.jbpm.graph.exe.Token extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

name

String name

start

Date start

end

Date end

node

Node node

nodeEnter

Date nodeEnter

processInstance

ProcessInstance processInstance

parent

Token parent

children

Map<K,V> children

comments

List<E> comments

subProcessInstance

ProcessInstance subProcessInstance

nextLogIndex

int nextLogIndex

isAbleToReactivateParent

boolean isAbleToReactivateParent

isTerminationImplicit

boolean isTerminationImplicit

isSuspended

boolean isSuspended

lock

String lock

Package org.jbpm.graph.log

Class org.jbpm.graph.log.ActionLog extends CompositeLog implements Serializable

serialVersionUID: 1L

Serialized Fields

action

Action action

exception

String exception

Class org.jbpm.graph.log.NodeLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

node

Node node

enter

Date enter

leave

Date leave

duration

long duration

Class org.jbpm.graph.log.ProcessInstanceCreateLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.log.ProcessInstanceEndLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.log.ProcessStateLog extends NodeLog implements Serializable

serialVersionUID: 1L

Serialized Fields

subProcessInstance

ProcessInstance subProcessInstance

Class org.jbpm.graph.log.SignalLog extends CompositeLog implements Serializable

serialVersionUID: 1L

Serialized Fields

transition

Transition transition

Class org.jbpm.graph.log.TokenCreateLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

child

Token child

Class org.jbpm.graph.log.TokenEndLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

child

Token child

Class org.jbpm.graph.log.TransitionLog extends CompositeLog implements Serializable

serialVersionUID: 1L

Serialized Fields

transition

Transition transition

sourceNode

Node sourceNode

destinationNode

Node destinationNode

Package org.jbpm.graph.node

Class org.jbpm.graph.node.DbSubProcessResolver extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.node.Decision extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

decisionConditions

List<E> decisionConditions

decisionDelegation

Delegation decisionDelegation

decisionExpression

String decisionExpression

Class org.jbpm.graph.node.DecisionCondition extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

transitionName

String transitionName

expression

String expression

Class org.jbpm.graph.node.EndState extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

endCompleteProcess

String endCompleteProcess

Class org.jbpm.graph.node.Fork extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

script

Script script
a script that calculates the transitionNames at runtime.

Class org.jbpm.graph.node.InterleaveEnd extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

back

Transition back

done

Transition done

Class org.jbpm.graph.node.InterleaveStart extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

variableName

String variableName

interleaver

InterleaveStart.Interleaver interleaver

Class org.jbpm.graph.node.Join extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

parentLockMode

String parentLockMode
specifies what type of hibernate lock should be acquired. null means no lock is to be acquired.


isDiscriminator

boolean isDiscriminator
specifies if this join is a discriminator. a descriminator reactivates the parent when the first child token enters the join.


tokenNames

Collection<E> tokenNames
a fixed set of child tokens.


script

Script script
a script that calculates child tokens at runtime.


nOutOfM

int nOutOfM
reactivate the parent if the n-th token arrives in the join.

Class org.jbpm.graph.node.MailNode extends Node implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.node.Merge extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

isSynchronized

boolean isSynchronized

Class org.jbpm.graph.node.MilestoneEvent extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

milestoneName

String milestoneName

relativeTokenPath

String relativeTokenPath

Class org.jbpm.graph.node.MilestoneNode extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

tokenPath

String tokenPath

Class org.jbpm.graph.node.ProcessState extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

subProcessDefinition

ProcessDefinition subProcessDefinition

variableAccesses

Set<E> variableAccesses

subProcessName

String subProcessName

Class org.jbpm.graph.node.StartState extends Node implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.node.State extends Node implements Serializable

serialVersionUID: 1L

Class org.jbpm.graph.node.TaskNode extends Node implements Serializable

serialVersionUID: 1L

Serialized Fields

tasks

Set<E> tasks

signal

int signal

createTasks

boolean createTasks

endTasks

boolean endTasks

Package org.jbpm.graph.node.advanced

Class org.jbpm.graph.node.advanced.ParallelSplit extends Node implements Serializable

serialVersionUID: 1L


Package org.jbpm.instantiation

Class org.jbpm.instantiation.DefaultProcessClassLoaderFactory extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.instantiation.Delegation extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

className

String className

configuration

String configuration

configType

String configType

processDefinition

ProcessDefinition processDefinition

Class org.jbpm.instantiation.SharedProcessClassLoaderFactory extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

jbpmConfiguration

JbpmConfiguration jbpmConfiguration

Package org.jbpm.jcr

Package org.jbpm.jcr.impl

Class org.jbpm.jcr.impl.AbstractJcrServiceFactory extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

username

String username

password

String password

workspace

String workspace

Class org.jbpm.jcr.impl.JcrServiceImpl extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

session

javax.jcr.Session session

Package org.jbpm.jcr.jackrabbit

Class org.jbpm.jcr.jackrabbit.JackrabbitJcrServiceFactory extends AbstractJcrServiceFactory implements Serializable

serialVersionUID: 1L

Serialized Fields

configuration

String configuration

directory

String directory

Package org.jbpm.jcr.jndi

Class org.jbpm.jcr.jndi.JndiJcrServiceFactory extends AbstractJcrServiceFactory implements Serializable

serialVersionUID: 1L

Serialized Fields

jndiName

String jndiName

repository

javax.jcr.Repository repository

Package org.jbpm.job

Class org.jbpm.job.CleanUpProcessJob extends Job implements Serializable

serialVersionUID: 1L

Class org.jbpm.job.ExecuteActionJob extends Job implements Serializable

serialVersionUID: 1L

Serialized Fields

action

Action action

Class org.jbpm.job.ExecuteNodeJob extends Job implements Serializable

serialVersionUID: 1L

Serialized Fields

node

Node node

Class org.jbpm.job.Job extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

dueDate

Date dueDate

processInstance

ProcessInstance processInstance

token

Token token

taskInstance

TaskInstance taskInstance

isSuspended

boolean isSuspended

isExclusive

boolean isExclusive

lockOwner

String lockOwner

lockTime

Date lockTime

exception

String exception

retries

int retries

configuration

String configuration

Class org.jbpm.job.SignalTokenJob extends Job implements Serializable

serialVersionUID: 1L

Class org.jbpm.job.Timer extends Job implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

repeat

String repeat

transitionName

String transitionName

action

Action action

graphElement

GraphElement graphElement

calendarResource

String calendarResource

Package org.jbpm.job.executor

Class org.jbpm.job.executor.JobExecutor extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

jbpmConfiguration

JbpmConfiguration jbpmConfiguration

name

String name

nbrOfThreads

int nbrOfThreads

idleInterval

int idleInterval

maxIdleInterval

int maxIdleInterval

retryInterval

int retryInterval

maxLockTime

int maxLockTime

lockMonitorInterval

int lockMonitorInterval

waitingExecutorCount

int waitingExecutorCount

waitingDispatcher

boolean waitingDispatcher

dispatcherActive

boolean dispatcherActive

waitingExecutorLock

edu.emory.mathcs.backport.java.util.concurrent.locks.Lock waitingExecutorLock

waitingExecutorCondition

edu.emory.mathcs.backport.java.util.concurrent.locks.Condition waitingExecutorCondition

waitingDispatcherCondition

edu.emory.mathcs.backport.java.util.concurrent.locks.Condition waitingDispatcherCondition

dispatchedJobs

LinkedList<E> dispatchedJobs

monitoredJobIds

Map<K,V> monitoredJobIds

isStarted

boolean isStarted

historyMaxSize

int historyMaxSize
Deprecated. property has no effect

lockBufferTime

int lockBufferTime
Deprecated. property has no effect

threads

Map<K,V> threads
Deprecated. call JobExecutor.getThreads() instead

Class org.jbpm.job.executor.JobExecutorServlet extends javax.servlet.http.HttpServlet implements Serializable

serialVersionUID: 1L

Serialized Fields

jbpmConfiguration

JbpmConfiguration jbpmConfiguration
Deprecated. 

Class org.jbpm.job.executor.JobHistoryEntry extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

executionTime

Date executionTime
Deprecated. 

jobDescription

String jobDescription
Deprecated. 

exception

String exception
Deprecated. 

Package org.jbpm.jpdl

Class org.jbpm.jpdl.JpdlException extends JbpmException implements Serializable

serialVersionUID: 1L

Serialized Fields

problems

List<E> problems

Package org.jbpm.jpdl.el

Class org.jbpm.jpdl.el.ELException extends JbpmException implements Serializable

serialVersionUID: 2L

Class org.jbpm.jpdl.el.ELParseException extends ELException implements Serializable

serialVersionUID: 1L


Package org.jbpm.jpdl.el.parser

Class org.jbpm.jpdl.el.parser.ELTokenMgrError extends Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.

Class org.jbpm.jpdl.el.parser.ParseException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

ELToken currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.


Package org.jbpm.jpdl.exe

Class org.jbpm.jpdl.exe.MilestoneInstance extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

name

String name

reached

boolean reached

token

Token token

listeners

Collection<E> listeners

Package org.jbpm.jpdl.par

Class org.jbpm.jpdl.par.FileArchiveParser extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.jpdl.par.FileFilter extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

files

List<E> files

Class org.jbpm.jpdl.par.JpdlArchiveParser extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.jpdl.par.ProcessArchive extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

entries

Map<K,V> entries

problems

List<E> problems

Package org.jbpm.jpdl.xml

Class org.jbpm.jpdl.xml.JpdlParser extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.jpdl.xml.Problem extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

level

int level

description

String description

resource

String resource

folder

String folder

line

Integer line

exception

Throwable exception

Package org.jbpm.logging

Package org.jbpm.logging.db

Class org.jbpm.logging.db.DbLoggingService extends Object implements Serializable

serialVersionUID: 2L

Serialized Fields

persistenceService

PersistenceService persistenceService

Class org.jbpm.logging.db.DbLoggingServiceFactory extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.logging.exe

Class org.jbpm.logging.exe.LoggingInstance extends ModuleInstance implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException
Serialized Fields

logs

List<E> logs

Package org.jbpm.logging.log

Class org.jbpm.logging.log.CompositeLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

children

List<E> children

Class org.jbpm.logging.log.MessageLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

message

String message

Class org.jbpm.logging.log.ProcessLog extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

index

int index

date

Date date

token

Token token

parent

CompositeLog parent

Package org.jbpm.mail

Class org.jbpm.mail.Mail extends Object implements Serializable

serialVersionUID: 2L

Serialized Fields

template

String template

to

String to

actors

String actors

cc

String cc

ccActors

String ccActors

bcc

String bcc

bccActors

String bccActors

subject

String subject

text

String text

Package org.jbpm.module.def

Class org.jbpm.module.def.ModuleDefinition extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

name

String name

processDefinition

ProcessDefinition processDefinition

Package org.jbpm.module.exe

Class org.jbpm.module.exe.ModuleInstance extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

processInstance

ProcessInstance processInstance

Package org.jbpm.msg

Package org.jbpm.msg.db

Class org.jbpm.msg.db.DbMessageService extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

jbpmContext

JbpmContext jbpmContext

hasProducedJobs

boolean hasProducedJobs

Class org.jbpm.msg.db.DbMessageServiceFactory extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.persistence

Class org.jbpm.persistence.JbpmPersistenceException extends JbpmException implements Serializable

serialVersionUID: 1L


Package org.jbpm.persistence.db

Class org.jbpm.persistence.db.DbPersistenceService extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

persistenceServiceFactory

DbPersistenceServiceFactory persistenceServiceFactory

connection

Connection connection

mustConnectionBeClosed

boolean mustConnectionBeClosed

transaction

org.hibernate.Transaction transaction

isTransactionEnabled

boolean isTransactionEnabled

isCurrentSessionEnabled

boolean isCurrentSessionEnabled

session

org.hibernate.Session session

mustSessionBeFlushed

boolean mustSessionBeFlushed

mustSessionBeClosed

boolean mustSessionBeClosed

graphSession

GraphSession graphSession

taskMgmtSession

TaskMgmtSession taskMgmtSession

jobSession

JobSession jobSession

contextSession

ContextSession contextSession

loggingSession

LoggingSession loggingSession

customSessions

Map<K,V> customSessions

services

Services services
Deprecated. for access to other services, invoke JbpmContext.getServices()

Class org.jbpm.persistence.db.DbPersistenceServiceFactory extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

configuration

org.hibernate.cfg.Configuration configuration

sessionFactoryJndiName

String sessionFactoryJndiName

sessionFactory

org.hibernate.SessionFactory sessionFactory

dataSourceJndiName

String dataSourceJndiName

dataSource

DataSource dataSource

isTransactionEnabled

boolean isTransactionEnabled

isCurrentSessionEnabled

boolean isCurrentSessionEnabled

mustSessionFactoryBeClosed

boolean mustSessionFactoryBeClosed

schemaExport

org.hibernate.tool.hbm2ddl.SchemaExport schemaExport
Deprecated. replaced by DbPersistenceServiceFactory.jbpmSchema

jbpmSchema

JbpmSchema jbpmSchema

Package org.jbpm.persistence.jta

Class org.jbpm.persistence.jta.JtaDbPersistenceService extends DbPersistenceService implements Serializable

serialVersionUID: 1L

Serialized Fields

userTransaction

UserTransaction userTransaction

Class org.jbpm.persistence.jta.JtaDbPersistenceServiceFactory extends DbPersistenceServiceFactory implements Serializable

serialVersionUID: 1L

Serialized Fields

userTransaction

UserTransaction userTransaction

Package org.jbpm.scheduler

Package org.jbpm.scheduler.db

Class org.jbpm.scheduler.db.DbSchedulerService extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

jbpmContext

JbpmContext jbpmContext

hasProducedTimers

boolean hasProducedTimers

Class org.jbpm.scheduler.db.DbSchedulerServiceFactory extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.scheduler.def

Class org.jbpm.scheduler.def.CancelTimerAction extends Action implements Serializable

serialVersionUID: 1L

Serialized Fields

timerName

String timerName

Class org.jbpm.scheduler.def.CreateTimerAction extends Action implements Serializable

serialVersionUID: 1L

Serialized Fields

timerName

String timerName

dueDate

String dueDate

repeat

String repeat

transitionName

String transitionName

timerAction

Action timerAction

Package org.jbpm.security

Package org.jbpm.security.authentication

Class org.jbpm.security.authentication.DefaultAuthenticationService extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

actorId

String actorId

Class org.jbpm.security.authentication.DefaultAuthenticationServiceFactory extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.authentication.SubjectAuthenticationService extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

principalClass

Class<T> principalClass

actorId

String actorId

allowActorIdOverwrite

boolean allowActorIdOverwrite

Class org.jbpm.security.authentication.SubjectAuthenticationServiceFactory extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

allowActorIdOverwrite

Boolean allowActorIdOverwrite

principalClassName

String principalClassName

Package org.jbpm.security.authorization

Class org.jbpm.security.authorization.IdentityAuthorizationService extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.authorization.IdentityAuthorizationServiceFactory extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.security.permission

Class org.jbpm.security.permission.CreateProcessInstancePermission extends BasicPermission implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.permission.DeployProcessPermission extends BasicPermission implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.permission.EndTaskPermission extends BasicPermission implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.permission.SubmitTaskParametersPermission extends BasicPermission implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.permission.TaskAssignPermission extends BasicPermission implements Serializable

serialVersionUID: 1L

Class org.jbpm.security.permission.ViewTaskParametersPermission extends BasicPermission implements Serializable

serialVersionUID: 1L


Package org.jbpm.signal

Package org.jbpm.svc

Class org.jbpm.svc.JbpmServiceException extends JbpmException implements Serializable

serialVersionUID: 1L

Class org.jbpm.svc.Services extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

serviceFactories

Map<K,V> serviceFactories

services

Map<K,V> services

saveOperations

List<E> saveOperations

Package org.jbpm.svc.save

Class org.jbpm.svc.save.CascadeSaveOperation extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.svc.save.CheckUnpersistableVariablesOperation extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.svc.save.HibernateSaveOperation extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.svc.save.SaveLogsOperation extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.taskmgmt

Package org.jbpm.taskmgmt.def

Class org.jbpm.taskmgmt.def.Swimlane extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

name

String name

actorIdExpression

String actorIdExpression

pooledActorsExpression

String pooledActorsExpression

assignmentDelegation

Delegation assignmentDelegation

taskMgmtDefinition

TaskMgmtDefinition taskMgmtDefinition

tasks

Set<E> tasks

Class org.jbpm.taskmgmt.def.Task extends GraphElement implements Serializable

serialVersionUID: 1L

Serialized Fields

isBlocking

boolean isBlocking

isSignalling

boolean isSignalling

condition

String condition

dueDate

String dueDate

priority

int priority

taskNode

TaskNode taskNode

startState

StartState startState

taskMgmtDefinition

TaskMgmtDefinition taskMgmtDefinition

swimlane

Swimlane swimlane

actorIdExpression

String actorIdExpression

pooledActorsExpression

String pooledActorsExpression

assignmentDelegation

Delegation assignmentDelegation

taskController

TaskController taskController

Class org.jbpm.taskmgmt.def.TaskController extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

taskControllerDelegation

Delegation taskControllerDelegation
allows the user to specify a custom task controller handler. if this is specified, the other member variableInstances are ignored. so either a taskControllerDelegation is specified or the variable- and signalMappings are specified, but not both.


variableAccesses

List<E> variableAccesses
maps process variable names (java.lang.String) to VariableAccess objects.

Class org.jbpm.taskmgmt.def.TaskMgmtDefinition extends ModuleDefinition implements Serializable

serialVersionUID: 1L

Serialized Fields

swimlanes

Map<K,V> swimlanes

tasks

Map<K,V> tasks

startTask

Task startTask

Package org.jbpm.taskmgmt.exe

Class org.jbpm.taskmgmt.exe.PooledActor extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

actorId

String actorId

taskInstances

Set<E> taskInstances

swimlaneInstance

SwimlaneInstance swimlaneInstance

Class org.jbpm.taskmgmt.exe.SwimlaneInstance extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

name

String name

actorId

String actorId

pooledActors

Set<E> pooledActors

swimlane

Swimlane swimlane

taskMgmtInstance

TaskMgmtInstance taskMgmtInstance

Class org.jbpm.taskmgmt.exe.TaskInstance extends VariableContainer implements Serializable

serialVersionUID: 1L

Serialized Fields

id

long id

version

int version

name

String name

description

String description

actorId

String actorId

create

Date create

start

Date start

end

Date end

dueDate

Date dueDate

priority

int priority

isCancelled

boolean isCancelled

isSuspended

boolean isSuspended

isOpen

boolean isOpen

isSignalling

boolean isSignalling

isBlocking

boolean isBlocking

task

Task task

token

Token token

swimlaneInstance

SwimlaneInstance swimlaneInstance

taskMgmtInstance

TaskMgmtInstance taskMgmtInstance

processInstance

ProcessInstance processInstance

pooledActors

Set<E> pooledActors

comments

List<E> comments

previousActorId

String previousActorId

Class org.jbpm.taskmgmt.exe.TaskMgmtInstance extends ModuleInstance implements Serializable

serialVersionUID: 1L

Serialized Fields

taskMgmtDefinition

TaskMgmtDefinition taskMgmtDefinition

swimlaneInstances

Map<K,V> swimlaneInstances

taskInstances

Set<E> taskInstances

taskInstanceVariableUpdates

Collection<E> taskInstanceVariableUpdates
stores task instances having variable updates. not persisted.


Package org.jbpm.taskmgmt.impl

Class org.jbpm.taskmgmt.impl.DefaultTaskInstanceFactoryImpl extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.taskmgmt.log

Class org.jbpm.taskmgmt.log.SwimlaneAssignLog extends SwimlaneLog implements Serializable

serialVersionUID: 1L

Serialized Fields

swimlaneOldActorId

String swimlaneOldActorId

swimlaneNewActorId

String swimlaneNewActorId

Class org.jbpm.taskmgmt.log.SwimlaneCreateLog extends SwimlaneLog implements Serializable

serialVersionUID: 1L

Serialized Fields

swimlaneActorId

String swimlaneActorId

Class org.jbpm.taskmgmt.log.SwimlaneLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

swimlaneInstance

SwimlaneInstance swimlaneInstance

Class org.jbpm.taskmgmt.log.TaskAssignLog extends TaskLog implements Serializable

serialVersionUID: 1L

Serialized Fields

taskOldActorId

String taskOldActorId

taskNewActorId

String taskNewActorId

Class org.jbpm.taskmgmt.log.TaskCreateLog extends TaskLog implements Serializable

serialVersionUID: 1L

Serialized Fields

taskActorId

String taskActorId

Class org.jbpm.taskmgmt.log.TaskEndLog extends TaskLog implements Serializable

serialVersionUID: 1L

Class org.jbpm.taskmgmt.log.TaskLog extends ProcessLog implements Serializable

serialVersionUID: 1L

Serialized Fields

taskInstance

TaskInstance taskInstance

Package org.jbpm.tx

Class org.jbpm.tx.TxService extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

isRollbackOnly

boolean isRollbackOnly

Class org.jbpm.tx.TxServiceFactory extends Object implements Serializable

serialVersionUID: 1L


Package org.jbpm.util

Class org.jbpm.util.JndiLookupException extends JbpmException implements Serializable

serialVersionUID: 1L

Class org.jbpm.util.Semaphore extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

permits

int permits

Class org.jbpm.util.StringUtil extends Object implements Serializable

serialVersionUID: 1L

Class org.jbpm.util.XmlException extends JbpmException implements Serializable

serialVersionUID: 1L


Package org.jbpm.web

Class org.jbpm.web.CloseJbpmConfigurationServlet extends javax.servlet.http.HttpServlet implements Serializable

serialVersionUID: 1L

Serialized Fields

configurationName

String configurationName
Deprecated. 

Class org.jbpm.web.JbpmContextFilter extends Object implements Serializable

serialVersionUID: 2L

Serialized Fields

jbpmConfiguration

JbpmConfiguration jbpmConfiguration

jbpmContextName

String jbpmContextName

isAuthenticationEnabled

boolean isAuthenticationEnabled



Copyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.