1 | public class DocumentImpl extends ItemImpl implements Document {↵ | | 1 | public class Being {↵
|
2 | private Blob content;↵ | | 2 | private lo↵
|
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↵ | | 3 | ng id;↵
|
| | | 4 | private String identity;↵
|
| | | 5 | private String location;↵
|
| | | 6 | private String species;↵
|
| | | 7 | ↵
|
15 | ) {↵ | | 8 | public void setLocation(String location) {↵
|
16 | this.created = created;↵ | | 9 | this.↵
|
17 | }↵ | | |
|
18 | /**↵ | | |
|
19 | * @return Returns the modified.↵ | | |
|
20 | */↵ | | |
|
21 | public Calendar getModified() {↵ | | |
|
22 | return modified;↵ | | |
|
23 | }↵ | | |
|
24 | /**↵ | | |
|
25 | * @param modified The modified to set.↵ | | |
|
26 | */↵ | | 10 | location = location;↵
|
| | | 11 | }↵
|
| | | 12 | public String getLocation() {↵
|
| | | 13 | return location;↵
|
| | | 14 | }↵
|
27 | public void setModified(Calendar modified) {↵ | | 15 | public void setSpecies(String species) {↵
|
28 | this.modified = modified;↵ | | 16 | this.species = species;↵
|
29 | }↵ | | 17 | }↵
|
30 | /**↵ | | 18 | ↵
|
31 | * @return Returns the content.↵ | | |
|
32 | */↵ | | |
|
33 | public Blob getContent() {↵ | | |
|
34 | return content;↵ | | |
|
35 | }↵ | | |
|
36 | /**↵ | | |
|
37 | * @param content The content to set.↵ | | |
|
38 | */↵ | | |
|
39 | public void setContent(Blob content) {↵ | | |
|
40 | this.content = content | | 19 | public String getSpecies() {↵
|
| | | 20 | return species;↵
|
| | | 21 | }↵
|
| | | 22 | public void setIdentity(String identity) {↵
|
| | | 23 | this.identity = identity;↵
|
| | | 24 | }↵
|
| | | 25 | public String getIdentity() {↵
|
| | | 26 | return identity
|