Enum WorkflowOffloadingProcessArguments
- java.lang.Object
-
- java.lang.Enum<WorkflowOffloadingProcessArguments>
-
- com.adobe.granite.offloading.workflow.api.WorkflowOffloadingProcessArguments
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WorkflowOffloadingProcessArguments>
@Deprecated public enum WorkflowOffloadingProcessArguments extends java.lang.Enum<WorkflowOffloadingProcessArguments>
Deprecated.As of AEM 6.5, see https://jira.corp.adobe.com/browse/CQ-4256396Workflow process arguments for integrating workflow offloading in workflow steps.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OFFLOADING_INPUT_WORKFLOW_MODEL
Deprecated.Flag indicating if the workflow model is supposed to be added to the offloading input.OFFLOADING_OUTPUT_WORKFLOW_MODEL
Deprecated.Flag indicating if the workflow model is supposed to be added to the offloading output.WORKFLOW_MODEL
Deprecated.The workflow model.WORKFLOW_PAYLOAD
Deprecated.The workflow model.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getArgumentName()
Deprecated.Get the argument name.static WorkflowOffloadingProcessArguments
valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static WorkflowOffloadingProcessArguments[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKFLOW_MODEL
public static final WorkflowOffloadingProcessArguments WORKFLOW_MODEL
Deprecated.The workflow model.
Mandatory. The workflow model to use for the offloaded workflow.
-
WORKFLOW_PAYLOAD
public static final WorkflowOffloadingProcessArguments WORKFLOW_PAYLOAD
Deprecated.The workflow model.
Mandatory. The workflow payload to use for the offloaded workflow. Only path based payloads are supported.
-
OFFLOADING_INPUT_WORKFLOW_MODEL
public static final WorkflowOffloadingProcessArguments OFFLOADING_INPUT_WORKFLOW_MODEL
Deprecated.Flag indicating if the workflow model is supposed to be added to the offloading input.
Optional.
-
OFFLOADING_OUTPUT_WORKFLOW_MODEL
public static final WorkflowOffloadingProcessArguments OFFLOADING_OUTPUT_WORKFLOW_MODEL
Deprecated.Flag indicating if the workflow model is supposed to be added to the offloading output.
Optional.
-
-
Method Detail
-
values
public static WorkflowOffloadingProcessArguments[] values()
Deprecated.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 (WorkflowOffloadingProcessArguments c : WorkflowOffloadingProcessArguments.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowOffloadingProcessArguments valueOf(java.lang.String name)
Deprecated.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getArgumentName
public java.lang.String getArgumentName()
Deprecated.Get the argument name.- Returns:
- The argument name.
-
-