View Javadoc
1 package inklings.jgatms.bean; 2 3 /*** 4 * Value object for the Response entity. 5 */ 6 public class Response { 7 8 private Long responseId; 9 private String response; 10 11 /*** 12 * Returns the value of responseId 13 */ 14 public Long getResponseId() { 15 return responseId; 16 } 17 18 /*** 19 * Sets the value of responseId 20 */ 21 public void setResponseId(Long responseId) { 22 this.responseId = responseId; 23 } 24 25 /*** 26 * Returns the value of response 27 */ 28 public String getResponse() { 29 return response; 30 } 31 32 /*** 33 * Sets the value of response 34 */ 35 public void setResponse(String response) { 36 this.response = response; 37 } 38 39 }

This page was automatically generated by Maven