Class FcCatchErrorProps
java.lang.Object
de.xima.fc.workflow.taglib.model.BaseTriggerProps
de.xima.fc.workflow.model.triggers.FcCatchErrorProps
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,Serializable
The properties model for workflow triggers of type
EWorkflowTriggerType.FC_CATCH_ERROR
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
-
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 -
Method Summary
Modifier and TypeMethodDescriptionvoid
setErrorCode
(String errorType) void
setErrorCodeMatchType
(EStringMatchType errorCodeMatchType) void
setNodeName
(String nodeName) void
setNodeNameMatchType
(EStringMatchType nodeNameMatchType) void
setNodeType
(String nodeType) void
setNodeTypeMatchType
(EStringMatchType nodeTypeMatchType) Methods inherited from class de.xima.fc.workflow.taglib.model.BaseTriggerProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
Constructor Details
-
FcCatchErrorProps
public FcCatchErrorProps()
-
-
Method Details
-
getErrorCode
- Returns:
- The exception type to which the trigger should react. When blank, the trigger reacts to all unhandled exceptions.
-
getErrorCodeMatchType
- Returns:
- How the entered exception code is compared against the code of the exception that was thrown.
-
getNodeName
- Returns:
- The node name to which to limit the trigger. The trigger reacts only when the exception was thrown by a node with this name. When blank, the trigger reacts irrespective of the node name.
-
getNodeNameMatchType
- Returns:
- How the entered node name is compared against the name of the node that threw the exception.
-
getNodeType
- Returns:
- The node type to which to limit the trigger. The trigger reacts only when the exception was thrown by a node with this type. When blank, the trigger reacts irrespective of the node type.
-
getNodeTypeMatchType
- Returns:
- How the entered node type is compared against the type of the node that threw the exception.
-
setErrorCode
- Parameters:
errorType
- The exception type to which the trigger should react. When blank, the trigger reacts to all unhandled exceptions.
-
setErrorCodeMatchType
- Parameters:
errorCodeMatchType
- How the entered exception code is compared against the code of the exception that was thrown.
-
setNodeName
- Parameters:
nodeName
- The node name to which to limit the trigger. The trigger reacts only when the exception was thrown by a node with this name.
-
setNodeNameMatchType
- Parameters:
nodeNameMatchType
- How the entered node name is compared against the name of the node that threw the exception. When blank, the trigger reacts irrespective of the node name.
-
setNodeType
- Parameters:
nodeType
- The node type to which to limit the trigger. The trigger reacts only when the exception was thrown by a node with this type. When blank, the trigger reacts irrespective of the node type.
-
setNodeTypeMatchType
- Parameters:
nodeTypeMatchType
- How the entered node type is compared against the type of the node that threw the exception.
-