001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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[] getAssetTagNames() {
030                    return _assetTagNames;
031            }
032    
033            public long getCompanyId() {
034                    return _companyId;
035            }
036    
037            public long getFileEntryId() {
038                    return _fileEntryId;
039            }
040    
041            public String getFileName() {
042                    return _fileName;
043            }
044    
045            public long getGroupId() {
046                    return _groupId;
047            }
048    
049            public Date getModifiedDate() {
050                    return _modifiedDate;
051            }
052    
053            public String getPortletId() {
054                    return _portletId;
055            }
056    
057            public String getProperties() {
058                    return _properties;
059            }
060    
061            public long getRepositoryId() {
062                    return _repositoryId;
063            }
064    
065            public long getUserId() {
066                    return _userId;
067            }
068    
069            public void setAssetCategoryIds(long[] assetCategoryIds) {
070                    _assetCategoryIds = assetCategoryIds;
071            }
072    
073            public void setAssetTagNames(String[] assetTagNames) {
074                    _assetTagNames = assetTagNames;
075            }
076    
077            public void setCompanyId(long companyId) {
078                    _companyId = companyId;
079            }
080    
081            public void setFileEntryId(long fileEntryId) {
082                    _fileEntryId = fileEntryId;
083            }
084    
085            public void setFileName(String fileName) {
086                    _fileName = fileName;
087            }
088    
089            public void setGroupId(long groupId) {
090                    _groupId = groupId;
091            }
092    
093            public void setModifiedDate(Date modifiedDate) {
094                    _modifiedDate = modifiedDate;
095            }
096    
097            public void setPortletId(String portletId) {
098                    _portletId = portletId;
099            }
100    
101            public void setProperties(String properties) {
102                    _properties = properties;
103            }
104            
105            public void setRepositoryId(long repositoryId) {
106                    _repositoryId = repositoryId;
107            }
108    
109            public void setUserId(long userId) {
110                    _userId = userId;
111            }
112    
113            private long[] _assetCategoryIds;
114            private String[] _assetTagNames;
115            private long _companyId;
116            private long _fileEntryId;
117            private String _fileName;
118            private long _groupId;
119            private Date _modifiedDate;
120            private String _portletId;
121            private String _properties;
122            private long _repositoryId;
123            private long _userId;
124    
125    }