Groovy Documentation

com.ace.mws.jobarrays
[Groovy] Class CancellationPolicyInformation

java.lang.Object
  com.ace.mws.jobarrays.CancellationPolicyInformation

class CancellationPolicyInformation

Job arrays can be canceled based on the success or failure of the first or any sub-job. This class represents the failure policies.

Authors:
bsaville


Field Summary
private CancellationPolicy anyJob

The cancellation policy based on the result of any sub-job.

private CancellationPolicy firstJob

The cancellation policy based on the result of the first sub-job (array index 1).

 
Constructor Summary
CancellationPolicyInformation()

 
Method Summary
CancellationPolicy getAnyJob()

The cancellation policy based on the result of any sub-job.

CancellationPolicy getFirstJob()

The cancellation policy based on the result of the first sub-job (array index 1).

void setAnyJob(CancellationPolicy anyJob)

The cancellation policy based on the result of any sub-job.

void setFirstJob(CancellationPolicy firstJob)

The cancellation policy based on the result of the first sub-job (array index 1).

String toString()

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

anyJob

private CancellationPolicy anyJob
The cancellation policy based on the result of any sub-job. May be used in combination with anyJob.


firstJob

private CancellationPolicy firstJob
The cancellation policy based on the result of the first sub-job (array index 1). May be used in combination with anyJob.


 
Constructor Detail

CancellationPolicyInformation

CancellationPolicyInformation()


 
Method Detail

getAnyJob

CancellationPolicy getAnyJob()
The cancellation policy based on the result of any sub-job. May be used in combination with anyJob.


getFirstJob

CancellationPolicy getFirstJob()
The cancellation policy based on the result of the first sub-job (array index 1). May be used in combination with anyJob.


setAnyJob

void setAnyJob(CancellationPolicy anyJob)
The cancellation policy based on the result of any sub-job. May be used in combination with anyJob.


setFirstJob

void setFirstJob(CancellationPolicy firstJob)
The cancellation policy based on the result of the first sub-job (array index 1). May be used in combination with anyJob.


toString

String toString()


 

Groovy Documentation