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 type EWorkflowTriggerType.FC_CATCH_ERROR.
Since:
7.0.0
Author:
XIMA MEDIA GmbH
See Also:
  • Constructor Details

    • FcCatchErrorProps

      public FcCatchErrorProps()
  • Method Details

    • 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.