1 | public class DocumentImpl extends ItemImpl implements Document {↵ | | 1 | public class Continent {↵
|
2 | private Blob content;↵ | | 2 | private ↵
|
3 | private Calendar modified;↵ | | |
|
4 | private Calendar created;↵ | | |
|
5 | /**↵ | | |
|
6 | * @return Returns the created.↵ | | |
|
7 | */↵ | | |
|
8 | public Calendar getCreated() {↵ | | |
|
9 | return created;↵ | | |
|
10 | }↵ | | |
|
11 | /**↵ | | |
|
12 | * @param created The created to set.↵ | | |
|
13 | */↵ | | |
|
14 | public void setCreated(Calendar created) {↵ | | |
|
15 | this.created = created;↵ | | |
|
16 | }↵ | | |
|
17 | /**↵ | | |
|
18 | * @return Returns the modified.↵ | | |
|
19 | */↵ | | |
|
20 | public Calendar getModified() {↵ | | |
|
21 | return modified;↵ | | |
|
22 | }↵ | | |
|
23 | /**↵ | | |
|
24 | * @param modified The modified to set.↵ | | |
|
25 | */↵ | | |
|
26 | public void setModified(Calendar modified↵ | | 3 | Integer id;↵
|
| | | 4 | private String name;↵
|
| | | 5 | private Set countries;↵
|
|
| | | 6 | public Integer getId() {↵
|
| | | 7 | return id;↵
|
| | | 8 | }↵
|
|
| | | 9 | public void setId(Integer id) {↵
|
| | | 10 | this.id = id;↵
|
| | | 11 | }↵
|
|
| | | 12 | public String getName() {↵
|
| | | 13 | return name;↵
|
| | | 14 | }↵
|
|
27 | ) {↵ | | 15 | public void setName(String name) {↵
|
28 | this.modified = modified;↵ | | 16 | this.↵
|
29 | }↵ | | |
|
30 | /**↵ | | |
|
31 | * @return Returns the content.↵ | | |
|
32 | */↵ | | 17 | name = name;↵
|
| | | 18 | }↵
|
|
33 | public Blob getContent() {↵ | | 19 | public Set getCountries() {↵
|
34 | return content;↵ | | 20 | return countries;↵
|
35 | }↵ | | 21 | }↵
|
36 | /**↵ | | |
|
37 | * @param content The content to set.↵ | | |
|
38 | */↵ | | |
|
39 | public void setContent(Blob content) {↵ | | 22 | public void setCountries(Set countries) {↵
|
40 | this.content = content;↵ | | 23 | this.countries = countries;↵
|
41 | | | 24 |
|