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
public class FcCatchErrorProps extends BaseTriggerProps
The properties model for workflow triggers of typeEWorkflowTriggerType.FC_CATCH_ERROR.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
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 FcCatchErrorProps() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetErrorCode()EStringMatchTypegetErrorCodeMatchType()StringgetNodeName()EStringMatchTypegetNodeNameMatchType()StringgetNodeType()EStringMatchTypegetNodeTypeMatchType()voidsetErrorCode(String errorType)voidsetErrorCodeMatchType(EStringMatchType errorCodeMatchType)voidsetNodeName(String nodeName)voidsetNodeNameMatchType(EStringMatchType nodeNameMatchType)voidsetNodeType(String nodeType)voidsetNodeTypeMatchType(EStringMatchType nodeTypeMatchType)- 
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseTriggerProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getErrorCode
public String getErrorCode()
- Returns:
 - The exception type to which the trigger should react. When blank, the trigger reacts to all unhandled exceptions.
 
 
- 
getErrorCodeMatchType
public EStringMatchType getErrorCodeMatchType()
- Returns:
 - How the entered exception code is compared against the code of the exception that was thrown.
 
 
- 
getNodeName
public String 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
public EStringMatchType getNodeNameMatchType()
- Returns:
 - How the entered node name is compared against the name of the node that threw the exception.
 
 
- 
getNodeType
public String 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
public EStringMatchType getNodeTypeMatchType()
- Returns:
 - How the entered node type is compared against the type of the node that threw the exception.
 
 
- 
setErrorCode
public void setErrorCode(String errorType)
- Parameters:
 errorType- The exception type to which the trigger should react. When blank, the trigger reacts to all unhandled exceptions.
 
- 
setErrorCodeMatchType
public void setErrorCodeMatchType(EStringMatchType errorCodeMatchType)
- Parameters:
 errorCodeMatchType- How the entered exception code is compared against the code of the exception that was thrown.
 
- 
setNodeName
public void setNodeName(String nodeName)
- 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
public void setNodeNameMatchType(EStringMatchType nodeNameMatchType)
- 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
public void setNodeType(String nodeType)
- 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
public void setNodeTypeMatchType(EStringMatchType nodeTypeMatchType)
- Parameters:
 nodeTypeMatchType- How the entered node type is compared against the type of the node that threw the exception.
 
 - 
 
 -