Package de.xima.fc.workflow.model.nodes
Class FcSwitchProps
- java.lang.Object
-
- de.xima.fc.workflow.model.nodes.FcSwitchProps
-
- All Implemented Interfaces:
Serializable
public final class FcSwitchProps extends Object implements Serializable
The properties model for workflow nodes of typeEWorkflowNodeType.FC_SWITCH
.- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FcSwitchProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getSwitchValue()
void
setDescription(String description)
void
setSwitchValue(String switchValue)
-
-
-
Method Detail
-
getDescription
public String getDescription()
- Returns:
- A human-readable description for this node.
-
getSwitchValue
public String getSwitchValue()
- Returns:
- The switch value to test against the individual switch cases.
-
setDescription
public void setDescription(String description)
- Parameters:
description
- A human-readable description for this node.
-
setSwitchValue
public void setSwitchValue(String switchValue)
- Parameters:
switchValue
- The switch value to test against the individual switch cases.
-
-