001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.documentlibrary.model;
016    
017    import java.io.Serializable;
018    import java.util.Date;
019    
020    /**
021     * @author Brian Wing Shun Chan
022     */
023    public class FileModel implements Serializable {
024    
025            public long[] getAssetCategoryIds() {
026                    return _assetCategoryIds;
027            }
028    
029            public String[] getAssetCategoryNames() {
030                    return _assetCategoryNames;
031            }
032    
033            public String[] getAssetTagNames() {
034                    return _assetTagNames;
035            }
036    
037            public long getCompanyId() {
038                    return _companyId;
039            }
040    
041            public long getFileEntryId() {
042                    return _fileEntryId;
043            }
044    
045            public String getFileName() {
046                    return _fileName;
047            }
048    
049            public long getGroupId() {
050                    return _groupId;
051            }
052    
053            public Date getModifiedDate() {
054                    return _modifiedDate;
055            }
056    
057            public String getPortletId() {
058                    return _portletId;
059            }
060    
061            public String getProperties() {
062                    return _properties;
063            }
064    
065            public long getRepositoryId() {
066                    return _repositoryId;
067            }
068    
069            public long getUserId() {
070                    return _userId;
071            }
072    
073            public void setAssetCategoryIds(long[] assetCategoryIds) {
074                    _assetCategoryIds = assetCategoryIds;
075            }
076    
077            public void setAssetCategoryNames(String[] assetCategoryNames) {
078                    _assetCategoryNames = assetCategoryNames;
079            }
080    
081            public void setAssetTagNames(String[] assetTagNames) {
082                    _assetTagNames = assetTagNames;
083            }
084    
085            public void setCompanyId(long companyId) {
086                    _companyId = companyId;
087            }
088    
089            public void setFileEntryId(long fileEntryId) {
090                    _fileEntryId = fileEntryId;
091            }
092    
093            public void setFileName(String fileName) {
094                    _fileName = fileName;
095            }
096    
097            public void setGroupId(long groupId) {
098                    _groupId = groupId;
099            }
100    
101            public void setModifiedDate(Date modifiedDate) {
102                    _modifiedDate = modifiedDate;
103            }
104    
105            public void setPortletId(String portletId) {
106                    _portletId = portletId;
107            }
108    
109            public void setProperties(String properties) {
110                    _properties = properties;
111            }
112            
113            public void setRepositoryId(long repositoryId) {
114                    _repositoryId = repositoryId;
115            }
116    
117            public void setUserId(long userId) {
118                    _userId = userId;
119            }
120    
121            private long[] _assetCategoryIds;
122            private String[] _assetCategoryNames;
123            private String[] _assetTagNames;
124            private long _companyId;
125            private long _fileEntryId;
126            private String _fileName;
127            private long _groupId;
128            private Date _modifiedDate;
129            private String _portletId;
130            private String _properties;
131            private long _repositoryId;
132            private long _userId;
133    
134    }