1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.documentlibrary.model;
16  
17  import java.io.Serializable;
18  import java.util.Date;
19  
20  /**
21   * <a href="FileModel.java.html"><b><i>View Source</i></b></a>
22   *
23   * @author Brian Wing Shun Chan
24   */
25  public class FileModel implements Serializable {
26  
27      public long[] getAssetCategoryIds() {
28          return _assetCategoryIds;
29      }
30  
31      public String[] getAssetTagNames() {
32          return _assetTagNames;
33      }
34  
35      public long getCompanyId() {
36          return _companyId;
37      }
38  
39      public long getFileEntryId() {
40          return _fileEntryId;
41      }
42  
43      public String getFileName() {
44          return _fileName;
45      }
46  
47      public long getGroupId() {
48          return _groupId;
49      }
50  
51      public Date getModifiedDate() {
52          return _modifiedDate;
53      }
54  
55      public String getPortletId() {
56          return _portletId;
57      }
58  
59      public String getProperties() {
60          return _properties;
61      }
62  
63      public long getRepositoryId() {
64          return _repositoryId;
65      }
66  
67      public void setAssetCategoryIds(long[] assetCategoryIds) {
68          _assetCategoryIds = assetCategoryIds;
69      }
70  
71      public void setAssetTagNames(String[] assetTagNames) {
72          _assetTagNames = assetTagNames;
73      }
74  
75      public void setCompanyId(long companyId) {
76          _companyId = companyId;
77      }
78  
79      public void setFileEntryId(long fileEntryId) {
80          _fileEntryId = fileEntryId;
81      }
82  
83      public void setFileName(String fileName) {
84          _fileName = fileName;
85      }
86  
87      public void setGroupId(long groupId) {
88          _groupId = groupId;
89      }
90  
91      public void setModifiedDate(Date modifiedDate) {
92          _modifiedDate = modifiedDate;
93      }
94  
95      public void setPortletId(String portletId) {
96          _portletId = portletId;
97      }
98  
99      public void setProperties(String properties) {
100         _properties = properties;
101     }
102     
103     public void setRepositoryId(long repositoryId) {
104         _repositoryId = repositoryId;
105     }
106 
107     private long[] _assetCategoryIds;
108     private String[] _assetTagNames;
109     private long _companyId;
110     private long _fileEntryId;
111     private String _fileName;
112     private long _groupId;
113     private Date _modifiedDate;
114     private String _portletId;
115     private String _properties;
116     private long _repositoryId;
117 
118 }