Package com.uc4.api.objects
Class SetValueAction
- java.lang.Object
-
- com.uc4.api.objects.ConditionOrAction
-
- com.uc4.api.objects.SetValueAction
-
- All Implemented Interfaces:
Action
public class SetValueAction extends ConditionOrAction implements Action
Sets or creates an object value which will be available for restarts.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSetValueAction.ScopeScope.
-
Constructor Summary
Constructors Constructor Description SetValueAction()Creates a newSetValueAction.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDisplayMessageID()java.lang.StringgetId()java.lang.StringgetName()intgetParameterMessageID()SetValueAction.ScopegetScope()intgetSkeletonMessageID()java.lang.StringgetValue()booleanisAction()booleanisAfterCondition()Returnstrueif this action can be used in a Pre-Condition.booleanisBeforeCondition()Returnstrueif this action can be used in a Post-Condition.booleanisFinal()Returnstrueif this is a final action in this condition.booleanisIF()voidsetName(java.lang.String name)voidsetScope(SetValueAction.Scope scope)voidsetValue(java.lang.String value)-
Methods inherited from class com.uc4.api.objects.ConditionOrAction
copy, createActionFromId, createConditionFromId, equals, getParameter, getPromptName, getScriptName, hashCode, isActive, isOnce, isParameterAltView, setActive, setOnce, setParameter
-
-
-
-
Method Detail
-
setName
public void setName(java.lang.String name)
- Parameters:
name- Name of the value entry
-
setValue
public void setValue(java.lang.String value)
- Parameters:
value- New value
-
setScope
public void setScope(SetValueAction.Scope scope)
- Parameters:
scope- Scope (TASK or PROCESS_FLOW)
-
getName
public java.lang.String getName()
- Returns:
- Name of the value entry
-
getValue
public java.lang.String getValue()
- Returns:
- New value
-
getScope
public SetValueAction.Scope getScope()
- Returns:
- Scope (TASK or PROCESS_FLOW)
-
isFinal
public boolean isFinal()
Description copied from interface:ActionReturnstrueif this is a final action in this condition.
-
getId
public java.lang.String getId()
- Specified by:
getIdin interfaceAction- Specified by:
getIdin classConditionOrAction- Returns:
- ID of the condition or action
-
isBeforeCondition
public boolean isBeforeCondition()
Description copied from interface:ActionReturnstrueif this action can be used in a Post-Condition.- Specified by:
isBeforeConditionin interfaceAction- Specified by:
isBeforeConditionin classConditionOrAction- Returns:
- true if the action/condition is allowed on the "Pre-Condition" tab
-
isAfterCondition
public boolean isAfterCondition()
Description copied from interface:ActionReturnstrueif this action can be used in a Pre-Condition.- Specified by:
isAfterConditionin interfaceAction- Specified by:
isAfterConditionin classConditionOrAction- Returns:
- true if the action/condition is allowed on the "Post-Condition" tab
-
isAction
public boolean isAction()
- Specified by:
isActionin classConditionOrAction- Returns:
- true if the sub class is an instance of
com.uc4.api.objects.Actionor false if the sub class is an instance ofcom.uc4.api.objects.Condition
-
isIF
public boolean isIF()
- Specified by:
isIFin classConditionOrAction- Returns:
- true if the action/condition is allowed in the condition of an IF workflow
-
getParameterMessageID
public int getParameterMessageID()
- Specified by:
getParameterMessageIDin classConditionOrAction- Returns:
- Message number of the parameter message
-
getSkeletonMessageID
public int getSkeletonMessageID()
- Specified by:
getSkeletonMessageIDin classConditionOrAction- Returns:
- Message number of this condition or action
-
getDisplayMessageID
public int getDisplayMessageID()
- Specified by:
getDisplayMessageIDin classConditionOrAction- Returns:
- Message number for displaying this condition
-
-