Interface IFcFormRecordMessageUploadRequestFulfilledDescriptors
-
- All Superinterfaces:
ITriggerDataDescriptor
- All Known Implementing Classes:
FcFormRecordMessageUploadRequestFulfilledHandler
public interface IFcFormRecordMessageUploadRequestFulfilledDescriptors extends ITriggerDataDescriptor
The result descriptors for the data returned by theEWorkflowTriggerType.FC_FORM_RECORD_MESSAGE_POSTED
event.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_CHAT
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
.static String
ATTR_MESSAGE
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
.static String
ATTR_UPLOAD_REQUEST
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 factory)
Creates the value descriptor for the data that is made available to the workflow when a task with this trigger starts.default IFileValueDescriptor
getTriggerFilesDescriptor()
Creates the files descriptor for the files that are made available to the workflow when a task with this trigger starts.
-
-
-
Field Detail
-
ATTR_CHAT
static final String ATTR_CHAT
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
. Thecjhat
containing the message with the upload request that was fulfilled.- See Also:
- Constant Field Values
-
ATTR_MESSAGE
static final String ATTR_MESSAGE
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
. Themessage
belonging to the upload request that was fulfilled.- See Also:
- Constant Field Values
-
ATTR_UPLOAD_REQUEST
static final String ATTR_UPLOAD_REQUEST
Name of the corresponding property of thegetTriggerDataDescriptor(IValueDescriptorFactory)
. Theupload request
that was fulfilled.- See Also:
- Constant Field Values
-
-
Method Detail
-
getTriggerDataDescriptor
default IValueDescriptor<?,? extends IValueBuilder<?>> getTriggerDataDescriptor(IValueDescriptorFactory factory)
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:
factory
- 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)
-
getTriggerFilesDescriptor
default IFileValueDescriptor getTriggerFilesDescriptor()
Description copied from interface:ITriggerDataDescriptor
Creates the files descriptor for the files that are made available to the workflow when a task with this trigger starts.- Specified by:
getTriggerFilesDescriptor
in interfaceITriggerDataDescriptor
- Returns:
- The files descriptor for the files that are made available to the workflow when a task with this trigger is executed.
- See Also:
ITriggerHandler.onTaskBegin(ITriggerOnTaskBeginParams)
-
-