1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.mobility.writer.entity;
17
18 import javax.persistence.Column;
19 import javax.persistence.Entity;
20 import javax.persistence.GeneratedValue;
21 import javax.persistence.GenerationType;
22 import javax.persistence.Id;
23 import javax.persistence.Table;
24 import javax.persistence.Version;
25
26
27
28
29
30
31 @Entity
32 @Table(name="WRITER_MEDIA")
33 public class Media {
34
35
36
37
38
39 public static final int MEDIA_TYPE_IMAGE = 1;
40 public static final int MEDIA_TYPE_VIDEO = 2;
41
42
43
44
45
46 @Id
47 @GeneratedValue(strategy = GenerationType.TABLE)
48 @Column(name="ID")
49 private Long id;
50
51
52
53
54
55
56 @Column(name="TYPE", nullable=false)
57 private int type;
58
59
60
61
62 @Column(name="PATH", nullable=false)
63 private String path;
64
65
66
67
68 @Column(name="PATH_THUMB", nullable=false)
69 private String thumbNailPath;
70
71
72
73
74 @Column(name="MIME_TYPE")
75 private String mimeType;
76
77 @Version
78 @Column(name="VER_NBR")
79 protected long versionNumber;
80
81
82
83
84 public Long getId() {
85 return id;
86 }
87
88
89
90
91 public void setId(Long id) {
92 this.id = id;
93 }
94
95
96
97
98 public int getType() {
99 return type;
100 }
101
102
103
104
105 public void setType(int type) {
106 this.type = type;
107 }
108
109
110
111
112 public String getPath() {
113 return path;
114 }
115
116
117
118
119 public void setPath(String path) {
120 this.path = path;
121 }
122
123
124
125
126 public String getThumbNailPath() {
127 return thumbNailPath;
128 }
129
130
131
132
133 public void setThumbNailPath(String thumbNailPath) {
134 this.thumbNailPath = thumbNailPath;
135 }
136
137
138
139
140
141 public String getMimeType() {
142 return mimeType;
143 }
144
145
146
147
148 public void setMimeType(String mimeType) {
149 this.mimeType = mimeType;
150 }
151
152
153
154
155
156 public long getVersionNumber() {
157 return versionNumber;
158 }
159
160
161
162
163
164
165 public void setVersionNumber(long versionNumber) {
166 this.versionNumber = versionNumber;
167 }
168
169
170
171
172
173 @Override
174 public String toString(){
175 StringBuilder sb = new StringBuilder(256);
176 sb.append("Media[");
177 sb.append("id=").append(this.id);
178 sb.append(",path=").append(this.path);
179 sb.append(",thumbNailPath=").append(this.thumbNailPath);
180 sb.append(",mimeType=").append(this.mimeType);
181 sb.append(",version=").append(this.versionNumber);
182 sb.append(",type=").append(this.type).append("]");
183 return sb.toString();
184 }
185 }