Groovy Documentation

com.ace.mws.jobs
[Groovy] Class JobBlockReason

java.lang.Object
  com.ace.mws.jobs.JobBlockReason

class JobBlockReason

Represents the reason a job might be blocked. The reason consists of the block reason type along with an optional message.


Field Summary
private Long id

private String message

The message associated with the the reason the job is blocked.

private static long serialVersionUID

private JobBlockReasonType type

The reason type.

 
Constructor Summary
JobBlockReason()

 
Method Summary
Long getId()

String getMessage()

The message associated with the the reason the job is blocked.

JobBlockReasonType getType()

The reason type.

void setId(Long id)

void setMessage(String message)

The message associated with the the reason the job is blocked.

void setType(JobBlockReasonType type)

The reason type.

String toString()

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

Field Detail

id

private Long id


message

private String message
The message associated with the the reason the job is blocked.


serialVersionUID

private static final long serialVersionUID


type

private JobBlockReasonType type
The reason type.


 
Constructor Detail

JobBlockReason

JobBlockReason()


 
Method Detail

getId

Long getId()


getMessage

String getMessage()
The message associated with the the reason the job is blocked.


getType

JobBlockReasonType getType()
The reason type.


setId

void setId(Long id)


setMessage

void setMessage(String message)
The message associated with the the reason the job is blocked.


setType

void setType(JobBlockReasonType type)
The reason type.


toString

String toString()


 

Groovy Documentation