Enum ErrorHandlingProcessData.ErrorHandlingParameter
- java.lang.Object
-
- java.lang.Enum<ErrorHandlingProcessData.ErrorHandlingParameter>
-
- de.aristaflow.adept2.model.common.plugindata.ErrorHandlingProcessData.ErrorHandlingParameter
-
- All Implemented Interfaces:
Serializable
,Comparable<ErrorHandlingProcessData.ErrorHandlingParameter>
- Enclosing interface:
- ErrorHandlingProcessData
public static enum ErrorHandlingProcessData.ErrorHandlingParameter extends Enum<ErrorHandlingProcessData.ErrorHandlingParameter>
Constants for the parameter names which build the API of the template.- Author:
- Kevin Goeser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA_CONTEXT
The data context of the failed activity.EBP_TYPE
The EBP type of the failed node.EC_NAME
The executable component name (if applicable, optional).ERROR_CODE
The error code of the failed activity.ERROR_COUNT
The error message of the failed activity.ERROR_MESSAGE
The error message of the failed activity.ERROR_STATE
The error state of the failed activity.INSTANCE_ID
The ID of the instance with the failed node.INSTANCE_LOG_ID
The log ID of the instance with the failed node.INSTANCE_NAME
The name of the instance with the failed node.INSTANCE_SUPERVISOR_AGENT_ID
The instance supervisor agent ID.INSTANCE_SUPERVISOR_ORG_POSITION_ID
The instance supervisor org position ID.IS_ACTIVITY
True, if the node had an activity.ITERATION_ID
The iteration of the failed node.NODE_ID
The ID of the failed node.NODE_NAME
The name of the failed node.NODE_STAFF_ASSIGNMENT_RULE
The staff assignment rule of the failed node.PERFORMING_AGENT_AGENT_ID
The agent executing the node.PERFORMING_AGENT_ORG_POSITION_ID
The org position of the agent executing the node.TEMPLATE_ID
The base template ID of the instance with the failed node.TEMPLATE_NAME
The name of the template of the instance with the failed node.
-
Field Summary
Fields Modifier and Type Field Description ProcessConstants.AdeptDataType
dataType
The data type of the parameter.UUID
identifierID
The identifier ID.boolean
isOptional
True, if the data is optional.String
parameterName
The name of the parameter.String
udtName
The UDT name of the parameter if of typeProcessConstants.AdeptDataType.USERDEFINED
, null else.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorHandlingProcessData.ErrorHandlingParameter
valueOf(String name)
Returns the enum constant of this type with the specified name.static ErrorHandlingProcessData.ErrorHandlingParameter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EBP_TYPE
public static final ErrorHandlingProcessData.ErrorHandlingParameter EBP_TYPE
The EBP type of the failed node. The type is represented by aninvariant number
.
-
TEMPLATE_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter TEMPLATE_ID
The base template ID of the instance with the failed node.
-
INSTANCE_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter INSTANCE_ID
The ID of the instance with the failed node.
-
INSTANCE_LOG_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter INSTANCE_LOG_ID
The log ID of the instance with the failed node.
-
NODE_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter NODE_ID
The ID of the failed node.
-
ITERATION_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter ITERATION_ID
The iteration of the failed node.
-
IS_ACTIVITY
public static final ErrorHandlingProcessData.ErrorHandlingParameter IS_ACTIVITY
True, if the node had an activity.
-
EC_NAME
public static final ErrorHandlingProcessData.ErrorHandlingParameter EC_NAME
The executable component name (if applicable, optional).
-
PERFORMING_AGENT_AGENT_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter PERFORMING_AGENT_AGENT_ID
The agent executing the node.
-
PERFORMING_AGENT_ORG_POSITION_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter PERFORMING_AGENT_ORG_POSITION_ID
The org position of the agent executing the node.
-
NODE_NAME
public static final ErrorHandlingProcessData.ErrorHandlingParameter NODE_NAME
The name of the failed node.
-
NODE_STAFF_ASSIGNMENT_RULE
public static final ErrorHandlingProcessData.ErrorHandlingParameter NODE_STAFF_ASSIGNMENT_RULE
The staff assignment rule of the failed node.
-
INSTANCE_NAME
public static final ErrorHandlingProcessData.ErrorHandlingParameter INSTANCE_NAME
The name of the instance with the failed node.
-
TEMPLATE_NAME
public static final ErrorHandlingProcessData.ErrorHandlingParameter TEMPLATE_NAME
The name of the template of the instance with the failed node.
-
ERROR_CODE
public static final ErrorHandlingProcessData.ErrorHandlingParameter ERROR_CODE
The error code of the failed activity.
-
ERROR_STATE
public static final ErrorHandlingProcessData.ErrorHandlingParameter ERROR_STATE
The error state of the failed activity.
-
ERROR_MESSAGE
public static final ErrorHandlingProcessData.ErrorHandlingParameter ERROR_MESSAGE
The error message of the failed activity.
-
ERROR_COUNT
public static final ErrorHandlingProcessData.ErrorHandlingParameter ERROR_COUNT
The error message of the failed activity.
-
INSTANCE_SUPERVISOR_AGENT_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter INSTANCE_SUPERVISOR_AGENT_ID
The instance supervisor agent ID.
-
INSTANCE_SUPERVISOR_ORG_POSITION_ID
public static final ErrorHandlingProcessData.ErrorHandlingParameter INSTANCE_SUPERVISOR_ORG_POSITION_ID
The instance supervisor org position ID.
-
DATA_CONTEXT
public static final ErrorHandlingProcessData.ErrorHandlingParameter DATA_CONTEXT
The data context of the failed activity.
-
-
Field Detail
-
parameterName
public final String parameterName
The name of the parameter.
-
dataType
public final ProcessConstants.AdeptDataType dataType
The data type of the parameter.
-
udtName
public final String udtName
The UDT name of the parameter if of typeProcessConstants.AdeptDataType.USERDEFINED
, null else.
-
identifierID
public final UUID identifierID
The identifier ID.
-
isOptional
public final boolean isOptional
True, if the data is optional.
-
-
Method Detail
-
values
public static ErrorHandlingProcessData.ErrorHandlingParameter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ErrorHandlingProcessData.ErrorHandlingParameter c : ErrorHandlingProcessData.ErrorHandlingParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorHandlingProcessData.ErrorHandlingParameter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-