Biblioteca Java - Blame information for rev 30
Subversion Repositories:
(root)/Frameworks and Technologies/RestJersey/com.linkscreens.userprofile/src/main/java/com/linkscreens/userprofile/entity/Tag.java
Rev | Author | Line No. | Line |
---|---|---|---|
30 | mihai | 1 | package com.linkscreens.userprofile.entity; |
2 | |||
3 | import net.vz.mongodb.jackson.Id; | ||
4 | |||
5 | public class Tag { | ||
6 | String name; | ||
7 | |||
8 | public String getName() { | ||
9 | return name; | ||
10 | } | ||
11 | |||
12 | public void setName(String name) { | ||
13 | this.name = name; | ||
14 | } | ||
15 | |||
16 | |||
17 | } |