Skip to content

Instantly share code, notes, and snippets.

@nadeesha5814
Created April 13, 2015 03:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nadeesha5814/e64452d3c2d068af47c0 to your computer and use it in GitHub Desktop.
Save nadeesha5814/e64452d3c2d068af47c0 to your computer and use it in GitHub Desktop.
public class workOrderResponse {
String workOrderId;
String name;
String address;
public workOrderResponse (){
workOrderId= "A1234";
name= "WSO2 Inc";
address= "787 Castro Street, Mountain View, CA 94041";
}
public String getWorkOrderId() {
return workOrderId;
}
public void setWorkOrderId(String workOrderId) {
this.workOrderId = workOrderId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment