Skip to content

Instantly share code, notes, and snippets.

@yaronv
Created July 1, 2015 19:56
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 yaronv/5234909742983dc6f0cf to your computer and use it in GitHub Desktop.
Save yaronv/5234909742983dc6f0cf to your computer and use it in GitHub Desktop.
package requests;
public class ProcessRequest {
private String id;
public ProcessRequest() {
}
public ProcessRequest(String id) {
this.id = id;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Override
public String toString() {
return "id=" + this.getId();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment