1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.opencastproject.series.api;
23
24 import org.opencastproject.metadata.dublincore.DublinCoreCatalog;
25
26 import java.util.Date;
27
28
29
30
31
32 public class Series {
33
34 private String id;
35
36
37 private String organization;
38
39
40 private DublinCoreCatalog dublinCore;
41
42
43 private String accessControl;
44
45
46 private Date modifiedDate;
47
48
49
50
51 private Date deletionDate;
52
53
54 private SeriesCreator creator;
55
56 public String getId() {
57 return this.id;
58 }
59
60 public void setId(String id) {
61 this.id = id;
62 }
63
64 public String getOrganization() {
65 return this.organization;
66 }
67
68 public void setOrganization(String organization) {
69 this.organization = organization;
70 }
71
72 public DublinCoreCatalog getDublinCore() {
73 return this.dublinCore;
74 }
75
76 public void setDublinCore(DublinCoreCatalog dublinCore) {
77 this.dublinCore = dublinCore;
78 }
79
80 public String getAccessControl() {
81 return this.accessControl;
82 }
83
84 public void setAccessControl(String accessControl) {
85 this.accessControl = accessControl;
86 }
87
88 public Date getModifiedDate() {
89 return this.modifiedDate;
90 }
91
92 public void setModifiedDate(Date modifiedDate) {
93 this.modifiedDate = modifiedDate;
94 }
95
96 public Date getDeletionDate() {
97 return this.deletionDate;
98 }
99
100 public void setDeletionDate(Date deletionDate) {
101 this.deletionDate = deletionDate;
102 }
103
104
105 public boolean isDeleted() {
106 return deletionDate != null;
107 }
108
109 public void setCreator(SeriesCreator creator) {
110 this.creator = creator;
111 }
112
113 public SeriesCreator getCreator() {
114 return this.creator;
115 }
116 }