1 package inklings.jgatms.bean;
2
3 /***
4 * Value object for the SkillLevel entity.
5 */
6 public class SkillLevel {
7
8 private Long levelId;
9 private String description;
10
11 /***
12 * Returns the value of levelId
13 */
14 public Long getLevelId() {
15 return levelId;
16 }
17
18 /***
19 * Sets the value of levelId
20 */
21 public void setLevelId(Long levelId) {
22 this.levelId = levelId;
23 }
24
25 /***
26 * Returns the value of description
27 */
28 public String getDescription() {
29 return description;
30 }
31
32 /***
33 * Sets the value of description
34 */
35 public void setDescription(String description) {
36 this.description = description;
37 }
38
39 }
This page was automatically generated by Maven