1 package inklings.jgatms.bean;
2
3 import java.util.List;
4
5 /***
6 * Value object for the Question entity.
7 */
8 public class Question {
9
10 private Long questionId;
11 private String question;
12 private List possibleResponses;
13
14 /***
15 * Returns the value of questionId
16 */
17 public Long getQuestionId() {
18 return questionId;
19 }
20
21 /***
22 * Sets the value of questionId
23 */
24 public void setQuestionId(Long questionId) {
25 this.questionId = questionId;
26 }
27
28 /***
29 * Returns the value of question
30 */
31 public String getQuestion() {
32 return question;
33 }
34
35 /***
36 * Sets the value of question
37 */
38 public void setQuestion(String question) {
39 this.question = question;
40 }
41
42 /***
43 * Returns the value of possibleResponses
44 */
45 public List getPossibleResponses() {
46 return possibleResponses;
47 }
48
49 /***
50 * Sets the value of possibleResponses
51 */
52 public void setPossibleResponses(List possibleResponses) {
53 this.possibleResponses = possibleResponses;
54 }
55
56 }
This page was automatically generated by Maven