1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.tags.model;
16  
17  import java.io.Serializable;
18  
19  import java.util.Date;
20  
21  /**
22   * <a href="TagsAssetDisplay.java.html"><b><i>View Source</i></b></a>
23   *
24   * @author Brian Wing Shun Chan
25   */
26  public class TagsAssetDisplay implements Serializable {
27  
28      public long getAssetId() {
29          return _assetId;
30      }
31  
32      public void setAssetId(long assetId) {
33          _assetId = assetId;
34      }
35  
36      public long getCompanyId() {
37          return _companyId;
38      }
39  
40      public void setCompanyId(long companyId) {
41          _companyId = companyId;
42      }
43  
44      public long getUserId() {
45          return _userId;
46      }
47  
48      public void setUserId(long userId) {
49          _userId = userId;
50      }
51  
52      public String getUserName() {
53          return _userName;
54      }
55  
56      public void setUserName(String userName) {
57          _userName = userName;
58      }
59  
60      public Date getCreateDate() {
61          return _createDate;
62      }
63  
64      public void setCreateDate(Date createDate) {
65          _createDate = createDate;
66      }
67  
68      public Date getModifiedDate() {
69          return _modifiedDate;
70      }
71  
72      public void setModifiedDate(Date modifiedDate) {
73          _modifiedDate = modifiedDate;
74      }
75  
76      public long getClassNameId() {
77          return _classNameId;
78      }
79  
80      public void setClassNameId(long classNameId) {
81          _classNameId = classNameId;
82      }
83  
84      public String getClassName() {
85          return _className;
86      }
87  
88      public void setClassName(String className) {
89          _className = className;
90      }
91  
92      public long getClassPK() {
93          return _classPK;
94      }
95  
96      public void setClassPK(long classPK) {
97          _classPK = classPK;
98      }
99  
100     public String getPortletId() {
101         return _portletId;
102     }
103 
104     public void setPortletId(String portletId) {
105         _portletId = portletId;
106     }
107 
108     public String getPortletTitle() {
109         return _portletTitle;
110     }
111 
112     public void setPortletTitle(String portletTitle) {
113         _portletTitle = portletTitle;
114     }
115 
116     public Date getStartDate() {
117         return _startDate;
118     }
119 
120     public void setStartDate(Date startDate) {
121         _startDate = startDate;
122     }
123 
124     public Date getEndDate() {
125         return _endDate;
126     }
127 
128     public void setEndDate(Date endDate) {
129         _endDate = endDate;
130     }
131 
132     public Date getPublishDate() {
133         return _publishDate;
134     }
135 
136     public void setPublishDate(Date publishDate) {
137         _publishDate = publishDate;
138     }
139 
140     public Date getExpirationDate() {
141         return _expirationDate;
142     }
143 
144     public void setExpirationDate(Date expirationDate) {
145         _expirationDate = expirationDate;
146     }
147 
148     public String getMimeType() {
149         return _mimeType;
150     }
151 
152     public void setMimeType(String mimeType) {
153         _mimeType = mimeType;
154     }
155 
156     public String getTitle() {
157         return _title;
158     }
159 
160     public void setTitle(String title) {
161         _title = title;
162     }
163 
164     public String getDescription() {
165         return _description;
166     }
167 
168     public void setDescription(String description) {
169         _description = description;
170     }
171 
172     public String getSummary() {
173         return _summary;
174     }
175 
176     public void setSummary(String summary) {
177         _summary = summary;
178     }
179 
180     public String getUrl() {
181         return _url;
182     }
183 
184     public void setUrl(String url) {
185         _url = url;
186     }
187 
188     public int getHeight() {
189         return _height;
190     }
191 
192     public void setHeight(int height) {
193         _height = height;
194     }
195 
196     public int getWidth() {
197         return _width;
198     }
199 
200     public void setWidth(int width) {
201         _width = width;
202     }
203 
204     public double getPriority() {
205         return _priority;
206     }
207 
208     public void setPriority(double priority) {
209         _priority = priority;
210     }
211 
212     public int getViewCount() {
213         return _viewCount;
214     }
215 
216     public void setViewCount(int viewCount) {
217         _viewCount = viewCount;
218     }
219 
220     public String getTagsEntries() {
221         return _tagsEntries;
222     }
223 
224     public void setTagsEntries(String tagsEntries) {
225         _tagsEntries = tagsEntries;
226     }
227 
228     private long _assetId;
229     private long _companyId;
230     private long _userId;
231     private String _userName;
232     private Date _createDate;
233     private Date _modifiedDate;
234     private long _classNameId;
235     private String _className;
236     private long _classPK;
237     private String _portletId;
238     private String _portletTitle;
239     private Date _startDate;
240     private Date _endDate;
241     private Date _publishDate;
242     private Date _expirationDate;
243     private String _mimeType;
244     private String _title;
245     private String _description;
246     private String _summary;
247     private String _url;
248     private int _height;
249     private int _width;
250     private double _priority;
251     private int _viewCount;
252     private String _tagsEntries;
253 
254 }