Interface IFcDoiVerifiedDescriptors
-
- All Superinterfaces:
ITriggerDataDescriptor
- All Known Implementing Classes:
FcDoiVerifiedHandler
public interface IFcDoiVerifiedDescriptors extends ITriggerDataDescriptor
The result descriptors for the data returned by theEWorkflowTriggerType.FC_DOI_VERIFIED
action.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_ACTION_NAME
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
static String
ATTR_TASK_NAME
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
static String
ATTR_TRIGGER_NAME
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default IValueDescriptor<?,? extends IValueBuilder<?>>
getTriggerDataDescriptor(IValueDescriptorFactory f)
Creates the value descriptor for the data that is made available to the workflow when a task with this trigger starts.-
Methods inherited from interface de.xima.fc.interfaces.workflow.execution.ITriggerDataDescriptor
getTriggerFilesDescriptor
-
-
-
-
Field Detail
-
ATTR_ACTION_NAME
static final String ATTR_ACTION_NAME
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
- See Also:
- Constant Field Values
-
ATTR_TASK_NAME
static final String ATTR_TASK_NAME
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
- See Also:
- Constant Field Values
-
ATTR_TRIGGER_NAME
static final String ATTR_TRIGGER_NAME
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTriggerDataDescriptor
default IValueDescriptor<?,? extends IValueBuilder<?>> getTriggerDataDescriptor(IValueDescriptorFactory f)
Description copied from interface:ITriggerDataDescriptor
Creates the value descriptor for the data that is made available to the workflow when a task with this trigger starts.- Specified by:
getTriggerDataDescriptor
in interfaceITriggerDataDescriptor
- 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 the data that is made available to the workflow when a task with this trigger is executed.
- See Also:
ITriggerHandler.onTaskBegin(ITriggerOnTaskBeginParams)
-
-