Package de.xima.fc.workflow.model.nodes
Class FcCounterProps
- java.lang.Object
 - 
- de.xima.fc.workflow.taglib.model.BaseActionProps
 - 
- de.xima.fc.workflow.model.nodes.FcCounterProps
 
 
 
- 
- All Implemented Interfaces:
 IDescriptionProviding,INameProviding,Serializable
@NotEmptyIf(field="step", dependants="actionType", target=FcCounterProps.class) public class FcCounterProps extends BaseActionProps implements SerializableModel class for the workflow action that modifies a counter, see alsoEWorkflowNodeType.FC_COUNTER.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
BaseActionProps.name 
 - 
 
- 
Field Summary
- 
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION 
- 
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME 
 - 
 
- 
Constructor Summary
Constructors Constructor Description FcCounterProps() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ECounterActionTypegetActionType()EntityRefgetCounterRef()StringgetStep()voidsetActionType(ECounterActionType actionType)voidsetCounterRef(EntityRef counterRef)voidsetStep(String step)- 
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getActionType
public ECounterActionType getActionType()
- Returns:
 - The action that indicates how the counter should be modified (increased, decreased, reset, etc.)
 
 
- 
setActionType
public void setActionType(ECounterActionType actionType)
- Parameters:
 actionType- The action that indicates how the counter should be modified (increased, decreased, reset, etc.)
 
- 
getCounterRef
public EntityRef getCounterRef()
- Returns:
 - Reference to the counter entity that should be modified.
 
 
- 
setCounterRef
public void setCounterRef(EntityRef counterRef)
- Parameters:
 counterRef- Reference to the counter entity that should be modified.
 
- 
getStep
public String getStep()
- Returns:
 - The amount by which the counter should be increased or decreased, depending on the
     
getActionType(). 
 
- 
setStep
public void setStep(String step)
- Parameters:
 step- The amount by which the counter should be increased or decreased, depending on thegetActionType().
 
 - 
 
 -