Enum WorkflowOffloadingProperties
- java.lang.Object
-
- java.lang.Enum<WorkflowOffloadingProperties>
-
- com.adobe.granite.offloading.workflow.api.WorkflowOffloadingProperties
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WorkflowOffloadingProperties>
@Deprecated public enum WorkflowOffloadingProperties extends java.lang.Enum<WorkflowOffloadingProperties>
Deprecated.As of AEM 6.5, see https://jira.corp.adobe.com/browse/CQ-4256396Public properties for use on the job payload for workflow offloading.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OFFLOADING_WORKFLOW_MODEL
Deprecated.Job payload property for the workflow model.OFFLOADING_WORKFLOW_PAYLOAD
Deprecated.Job payload property for the workflow payload.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getPropertyName()
Deprecated.The property name for the given enum value.static WorkflowOffloadingProperties
valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static WorkflowOffloadingProperties[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFFLOADING_WORKFLOW_MODEL
public static final WorkflowOffloadingProperties OFFLOADING_WORKFLOW_MODEL
Deprecated.Job payload property for the workflow model.
-
OFFLOADING_WORKFLOW_PAYLOAD
public static final WorkflowOffloadingProperties OFFLOADING_WORKFLOW_PAYLOAD
Deprecated.Job payload property for the workflow payload.
-
-
Method Detail
-
values
public static WorkflowOffloadingProperties[] 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 (WorkflowOffloadingProperties c : WorkflowOffloadingProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowOffloadingProperties 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
-
getPropertyName
public java.lang.String getPropertyName()
Deprecated.The property name for the given enum value.- Returns:
- The property name.
-
-