1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getRAWs", propOrder = {
"jobID",
"pageNumber"
})
public class GetRAWs {
@XmlElement(required = true)
protected String jobID;
protected int pageNumber;
/**
* Gets the value of the jobID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJobID() {
return jobID;
}
/**
* Sets the value of the jobID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJobID(String value) {
this.jobID = value;
}
/**
* Gets the value of the pageNumber property.
*
*/
public int getPageNumber() {
return pageNumber;
}
/**
* Sets the value of the pageNumber property.
*
*/
public void setPageNumber(int value) {
this.pageNumber = value;
}
/**
* Generates a String representation of the contents of this type.
* This is an extension method, produced by the 'ts' xjc plugin
*
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, JAXBToStringStyle.DEFAULT_STYLE);
}
} |
Partager