RequestProcessor 
 executor service. For task tracking purposes, use the 
 Progress API.
 See usage examples to start working 
 with the new APIs.@Deprecated public enum TaskGroupExecutionPolicy extends java.lang.Enum<TaskGroupExecutionPolicy>
| Enum Constant and Description | 
|---|
| ABORT_ON_FAILUREDeprecated.  Will abort the rest of the tasks in case of any failure | 
| CONTINUE_ON_FAILUREDeprecated.  Will continue with the next task, if any, in the event of a
 failure. | 
| Modifier and Type | Method and Description | 
|---|---|
| static TaskGroupExecutionPolicy | valueOf(java.lang.String name)Deprecated.  Returns the enum constant of this type with the specified name. | 
| static TaskGroupExecutionPolicy[] | values()Deprecated.  Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TaskGroupExecutionPolicy ABORT_ON_FAILURE
public static final TaskGroupExecutionPolicy CONTINUE_ON_FAILURE
public static TaskGroupExecutionPolicy[] values()
for (TaskGroupExecutionPolicy c : TaskGroupExecutionPolicy.values()) System.out.println(c);
public static TaskGroupExecutionPolicy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null