Package de.xima.fc.workflow.retval.node
Interface IFcChangeStateDescriptors
-
- All Superinterfaces:
IExecutionResultDescriptor
- All Known Implementing Classes:
FcChangeStateHandler
public interface IFcChangeStateDescriptors extends IExecutionResultDescriptor
The result descriptors for the data returned by theEWorkflowNodeType.FC_CHANGE_STATEaction.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
Fields Modifier and Type Field Description static StringATTR_CHANGEDName of the corresponding property of thegetSuccessValueDescriptor(IValueDescriptorFactory)static StringATTR_NEW_STATEName of the corresponding property of thegetSuccessValueDescriptor(IValueDescriptorFactory)static StringATTR_OLD_STATEName of the corresponding property of thegetSuccessValueDescriptor(IValueDescriptorFactory)static StringATTR_STATE_IDName of the corresponding property for the database ID of the (new / old) state of thegetSuccessValueDescriptor(IValueDescriptorFactory)static StringATTR_STATE_NAMEName of the corresponding property for the name of the (new / old) state of thegetSuccessValueDescriptor(IValueDescriptorFactory)static StringATTR_STATE_UUIDName of the corresponding property for the UUID of the (new / old) state of thegetSuccessValueDescriptor(IValueDescriptorFactory)
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default IUnionValueDescriptor<String>getErrorValueDescriptor(IValueDescriptorFactory f)The union descriptor for the different error types that may occur when the node is executed.default IUnionValueDescriptor<String>getSoftErrorValueDescriptor(IValueDescriptorFactory f)The union descriptor for the differentsoft errortypes that may occur when the node is executed.default IRecordValueDescriptorgetSuccessValueDescriptor(IValueDescriptorFactory f)-
Methods inherited from interface de.xima.fc.interfaces.workflow.execution.IExecutionResultDescriptor
getAlwaysValueDescriptor, getAttachmentValueDescriptor, getFileValueDescriptor
-
-
-
-
Field Detail
-
ATTR_NEW_STATE
static final String ATTR_NEW_STATE
Name of the corresponding property of thegetSuccessValueDescriptor(IValueDescriptorFactory)- See Also:
- Constant Field Values
-
ATTR_OLD_STATE
static final String ATTR_OLD_STATE
Name of the corresponding property of thegetSuccessValueDescriptor(IValueDescriptorFactory)- See Also:
- Constant Field Values
-
ATTR_CHANGED
static final String ATTR_CHANGED
Name of the corresponding property of thegetSuccessValueDescriptor(IValueDescriptorFactory)- See Also:
- Constant Field Values
-
ATTR_STATE_ID
static final String ATTR_STATE_ID
Name of the corresponding property for the database ID of the (new / old) state of thegetSuccessValueDescriptor(IValueDescriptorFactory)- See Also:
- Constant Field Values
-
ATTR_STATE_NAME
static final String ATTR_STATE_NAME
Name of the corresponding property for the name of the (new / old) state of thegetSuccessValueDescriptor(IValueDescriptorFactory)- See Also:
- Constant Field Values
-
ATTR_STATE_UUID
static final String ATTR_STATE_UUID
Name of the corresponding property for the UUID of the (new / old) state of thegetSuccessValueDescriptor(IValueDescriptorFactory)- See Also:
- Constant Field Values
-
-
Method Detail
-
getErrorValueDescriptor
default IUnionValueDescriptor<String> getErrorValueDescriptor(IValueDescriptorFactory f)
Description copied from interface:IExecutionResultDescriptorThe union descriptor for the different error types that may occur when the node is executed. Each discriminator of the union represents an error or exception type.factory.recordBuilder() // .requiredProperty("errorCode", factory.integer()) // .requiredProperty("errorMessage", factory.string()) // .requiredProperty("localizedMessage", factory.integer()); return factory.add("CONNECT_TIMEOUT", error) // .add("READ_TIMEOUT", error);The example above uses the same data type for each error, but you can return different data depending on the error type.Note that you do not have to include a general error code. When the
executemethod of a node handler throws an unhandled (runtime) exception, the error codeCmnConst.Workflow.ERROR_CODE_GENERALis set automatically.- Specified by:
getErrorValueDescriptorin interfaceIExecutionResultDescriptor- Parameters:
f- Factory that may be used for creating the descriptor. You may also useValueDescriptorFactory.getInstance()if you wish to cache the descriptor in a static or instance field.- Returns:
- The value descriptor for the data that is made available to the workflow when the execution of the node failed (such as by throwing an exception).
-
getSoftErrorValueDescriptor
default IUnionValueDescriptor<String> getSoftErrorValueDescriptor(IValueDescriptorFactory f)
Description copied from interface:IExecutionResultDescriptorThe union descriptor for the differentsoft errortypes that may occur when the node is executed. Each discriminator of the union represents an error or exception type.factory.recordBuilder() // .requiredProperty("errorCode", factory.integer()) // .requiredProperty("errorMessage", factory.string()) // .requiredProperty("localizedMessage", factory.integer()); return factory.add("MISSING_UPLOAD", error) // .add("CLIENT_ERROR", error);The example above uses the same data type for each error, but you can return different data depending on the error type.@implNote This interface provides a default implementation that returns an empty descriptor for backwards compatibility so as not to break existing implementation. However, all existing implementations are strongly advised to override and implement this method. The default implementation may be removed at some point.
- Specified by:
getSoftErrorValueDescriptorin interfaceIExecutionResultDescriptor- Parameters:
f- Factory that may be used for creating the descriptor. You may also useValueDescriptorFactory.getInstance()if you wish to cache the descriptor in a static or instance field.- Returns:
- The value descriptor for the data that is made available to the workflow when the execution of the node was successful, but contains one or more soft errors.
-
getSuccessValueDescriptor
default IRecordValueDescriptor getSuccessValueDescriptor(IValueDescriptorFactory f)
- Specified by:
getSuccessValueDescriptorin interfaceIExecutionResultDescriptor- Parameters:
f- Factory that may be used for creating the descriptor. Instead of the factory passed in to this method, you may also useValueDescriptorFactory.getInstance()if you wish to cache the descriptor in a static or instance field.- Returns:
- The value descriptor for that data that is made available to the workflow when the node is executed successfully.
-
-