1 package inklings.jgatms.bean;
2
3 import java.util.List;
4
5 /***
6 * Value object for the SkillProfile entity.
7 */
8 public class SkillProfile {
9
10 private Long skillProfileId;
11 private Member member;
12 private SkillLevel skillLevel;
13 private Skill skill;
14 private List questionResponses;
15
16 /***
17 * Returns the value of skillProfileId
18 */
19 public Long getSkillProfileId() {
20 return skillProfileId;
21 }
22
23 /***
24 * Sets the value of skillProfileId
25 */
26 public void setSkillProfileId(Long skillProfileId) {
27 this.skillProfileId = skillProfileId;
28 }
29
30 /***
31 * Returns the value of member
32 */
33 public Member getMember() {
34 return member;
35 }
36
37 /***
38 * Sets the value of member
39 */
40 public void setMember(Member member) {
41 this.member = member;
42 }
43
44 /***
45 * Returns the value of skillLevel
46 */
47 public SkillLevel getSkillLevel() {
48 return skillLevel;
49 }
50
51 /***
52 * Sets the value of skillLevel
53 */
54 public void setSkillLevel(SkillLevel skillLevel) {
55 this.skillLevel = skillLevel;
56 }
57
58 /***
59 * Returns the value of skill
60 */
61 public Skill getSkill() {
62 return skill;
63 }
64
65 /***
66 * Sets the value of skill
67 */
68 public void setSkill(Skill skill) {
69 this.skill = skill;
70 }
71
72 /***
73 * Returns the value of questionResponses
74 */
75 public List getQuestionResponses() {
76 return questionResponses;
77 }
78
79 /***
80 * Sets the value of questionResponses
81 */
82 public void setQuestionResponses(List questionResponses) {
83 this.questionResponses = questionResponses;
84 }
85
86 }
This page was automatically generated by Maven