View Javadoc
1   /**
2    * Copyright 2011-2013 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
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   * A class representing media on the webserver.
28   * @author Kuali Mobility Team (mobility.collab@kuali.org)
29   * @since 3.0.0
30   */
31  @Entity
32  @Table(name="WRITER_MEDIA")
33  public class Media {
34  
35  	/*
36  		TODO - This class with services should be moved to a shared service in KME
37  	 */
38  
39  	public static final int MEDIA_TYPE_IMAGE = 1;
40  	public static final int MEDIA_TYPE_VIDEO = 2;
41  	
42  	
43  	/**
44  	 * Primary key of this media.
45  	 */
46  	@Id
47  	@GeneratedValue(strategy = GenerationType.TABLE)
48      @Column(name="ID")
49  	private Long id;
50  	
51  	/**
52  	 * Content type of this media.
53  	 * 1 - Image
54  	 * 2 - Video
55  	 */
56  	@Column(name="TYPE", nullable=false)
57  	private int type;
58  	
59  	/**
60  	 * Path to the media on the webserver.
61  	 */
62  	@Column(name="PATH", nullable=false)
63  	private String path;
64  	
65  	/**
66  	 * Path to the thumbnail on the webserver.
67  	 */
68  	@Column(name="PATH_THUMB", nullable=false)
69  	private String thumbNailPath;
70  
71  	/**
72  	 * MIME type of this media
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  	 * @return the id
83  	 */
84  	public Long getId() {
85  		return id;
86  	}
87  
88  	/**
89  	 * @param id the id to set
90  	 */
91  	public void setId(Long id) {
92  		this.id = id;
93  	}
94  
95  	/**
96  	 * @return the type
97  	 */
98  	public int getType() {
99  		return type;
100 	}
101 
102 	/**
103 	 * @param type the type to set
104 	 */
105 	public void setType(int type) {
106 		this.type = type;
107 	}
108 
109 	/**
110 	 * @return the path
111 	 */
112 	public String getPath() {
113 		return path;
114 	}
115 
116 	/**
117 	 * @param path the path to set
118 	 */
119 	public void setPath(String path) {
120 		this.path = path;
121 	}
122 
123 	/**
124 	 * @return the thumbNailPath
125 	 */
126 	public String getThumbNailPath() {
127 		return thumbNailPath;
128 	}
129 
130 	/**
131 	 * @param thumbNailPath the thumbNailPath to set
132 	 */
133 	public void setThumbNailPath(String thumbNailPath) {
134 		this.thumbNailPath = thumbNailPath;
135 	}
136 	
137 
138 	/**
139 	 * @return the mimeType
140 	 */
141 	public String getMimeType() {
142 		return mimeType;
143 	}
144 
145 	/**
146 	 * @param mimeType the mimeType to set
147 	 */
148 	public void setMimeType(String mimeType) {
149 		this.mimeType = mimeType;
150 	}
151 	
152 	/**
153 	 * Sets the version number of the ArticleRejection
154 	 * @return
155 	 */
156 	public long getVersionNumber() {
157 		return versionNumber;
158 	}
159 	
160 
161 	/**
162 	 * Gets the version number of the ArticleRejection
163 	 * @return
164 	 */
165 	public void setVersionNumber(long versionNumber) {
166 		this.versionNumber = versionNumber;
167 	}
168 
169 	/*
170 	 * (non-Javadoc)
171 	 * @see java.lang.Object#toString()
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 }