1 package inklings.jgatms.bean;
2
3 import java.util.List;
4
5 /***
6 * Value object for the QuestionResponseProfile entity.
7 */
8 public class QuestionResponseProfile {
9
10 private Question question;
11 private Response response;
12
13 /***
14 * Returns the value of question
15 */
16 public Question getQuestion() {
17 return question;
18 }
19
20 /***
21 * Sets the value of question
22 */
23 public void setQuestion(Question question) {
24 this.question = question;
25 }
26
27 /***
28 * Returns the value of response
29 */
30 public Response getResponse() {
31 return response;
32 }
33
34 /***
35 * Sets the value of response
36 */
37 public void setResponse(Response response) {
38 this.response = response;
39 }
40
41 }
This page was automatically generated by Maven