Package | Description |
---|---|
com.whitestein.lsps.engine.change |
Package contains core of the internal event system.
|
com.whitestein.lsps.engine.dto |
Data transfer objects for engine related data.
|
com.whitestein.lsps.engine.state.ser | |
com.whitestein.lsps.engine.state.xml | |
com.whitestein.lsps.stdlib.type |
This package contains implementations of core reflection types.
|
com.whitestein.lsps.test |
Modifier and Type | Method and Description |
---|---|
GoalState |
GoalStateChange.getNewState()
Returns the new state.
|
GoalState |
GoalStateChange.getOldState()
Returns the old state.
|
Constructor and Description |
---|
GoalStateChange(Goal goal,
GoalState oldState,
GoalState newState)
Creates new instance.
|
Modifier and Type | Field and Description |
---|---|
static Set<GoalState> |
GoalState.ACTIVE_GOAL_STATES
Set containing active goal states.
|
static Set<GoalState> |
GoalState.FINISHED_GOAL_STATES
Set containing finished goal states.
|
Modifier and Type | Method and Description |
---|---|
GoalState |
Goal.getState()
Returns the goal state.
|
static GoalState |
GoalState.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoalState[] |
GoalState.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
GoalState.canBeChangedFromState(GoalState oldState)
Returns true if a goal can change its goal state from
oldState to this state. |
boolean |
GoalState.canBeChangedToState(GoalState newState)
Returns true if a goal can change its goal state from this state to
newState . |
Constructor and Description |
---|
Goal(String modelId,
long processInstanceId,
String contextName,
String name,
GoalType type,
GoalState state,
Collection<GOElement> children,
boolean top)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
GoalState |
SGoal.getState() |
Modifier and Type | Method and Description |
---|---|
void |
SGoal.setState(GoalState state) |
Modifier and Type | Method and Description |
---|---|
GoalState |
Goal.getState()
Returns the goal state.
|
Modifier and Type | Method and Description |
---|---|
void |
Goal.setState(GoalState state)
Sets new goal state.
|
Constructor and Description |
---|
Goal(ProcessInstance processInstance,
String name,
GoalType goalType,
Goal parentGoal,
GoalState state)
Creates new instance of
Goal . |
Modifier and Type | Method and Description |
---|---|
GoalState |
GoalHolder.getStateObject()
Returns goal state object.
|
Modifier and Type | Method and Description |
---|---|
GoalState |
ModelInstance.getGoalState(String goal)
Returns a state of the given goal.
|
Modifier and Type | Method and Description |
---|---|
void |
ModelInstance.waitForGoalState(String goalName,
GoalState state)
Awaits for given goal to enter given state, but at most for 60 seconds.
|
void |
ModelInstance.waitForGoalState(String goalName,
GoalState state,
long timeoutMillis)
Awaits for given goal to enter given state, but at most for given time duration.
|
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.