001    /**
002     * Copyright (c) 2000-2013 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.portlet.documentlibrary.model;
016    
017    import com.liferay.portal.model.PersistedModel;
018    
019    /**
020     * The extended model interface for the DLFileEntry service. Represents a row in the "DLFileEntry" database table, with each column mapped to a property of this class.
021     *
022     * @author Brian Wing Shun Chan
023     * @see DLFileEntryModel
024     * @see com.liferay.portlet.documentlibrary.model.impl.DLFileEntryImpl
025     * @see com.liferay.portlet.documentlibrary.model.impl.DLFileEntryModelImpl
026     * @generated
027     */
028    public interface DLFileEntry extends DLFileEntryModel, PersistedModel {
029            /*
030             * NOTE FOR DEVELOPERS:
031             *
032             * Never modify this interface directly. Add methods to {@link com.liferay.portlet.documentlibrary.model.impl.DLFileEntryImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
033             */
034            public java.io.InputStream getContentStream()
035                    throws com.liferay.portal.kernel.exception.PortalException,
036                            com.liferay.portal.kernel.exception.SystemException;
037    
038            public java.io.InputStream getContentStream(java.lang.String version)
039                    throws com.liferay.portal.kernel.exception.PortalException,
040                            com.liferay.portal.kernel.exception.SystemException;
041    
042            public long getDataRepositoryId();
043    
044            public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties();
045    
046            public java.util.Map<java.lang.String, com.liferay.portlet.dynamicdatamapping.storage.Fields> getFieldsMap(
047                    long fileVersionId)
048                    throws com.liferay.portal.kernel.exception.PortalException,
049                            com.liferay.portal.kernel.exception.SystemException;
050    
051            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion()
052                    throws com.liferay.portal.kernel.exception.PortalException,
053                            com.liferay.portal.kernel.exception.SystemException;
054    
055            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion(
056                    java.lang.String version)
057                    throws com.liferay.portal.kernel.exception.PortalException,
058                            com.liferay.portal.kernel.exception.SystemException;
059    
060            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileVersion> getFileVersions(
061                    int status) throws com.liferay.portal.kernel.exception.SystemException;
062    
063            public int getFileVersionsCount(int status)
064                    throws com.liferay.portal.kernel.exception.SystemException;
065    
066            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder()
067                    throws com.liferay.portal.kernel.exception.PortalException,
068                            com.liferay.portal.kernel.exception.SystemException;
069    
070            public java.lang.String getIcon();
071    
072            public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion(
073                    boolean trusted)
074                    throws com.liferay.portal.kernel.exception.PortalException,
075                            com.liferay.portal.kernel.exception.SystemException;
076    
077            public com.liferay.portal.model.Lock getLock();
078    
079            public java.lang.String getLuceneProperties();
080    
081            public com.liferay.portlet.documentlibrary.model.DLFolder getTrashContainer()
082                    throws com.liferay.portal.kernel.exception.PortalException,
083                            com.liferay.portal.kernel.exception.SystemException;
084    
085            /**
086            * @deprecated As of 6.2.0, replaced by {@link DLFileVersion#getUserId()}
087            */
088            public long getVersionUserId();
089    
090            /**
091            * @deprecated As of 6.2.0, replaced by {@link DLFileVersion#getUserName()}
092            */
093            public java.lang.String getVersionUserName();
094    
095            /**
096            * @deprecated As of 6.2.0, replaced by {@link DLFileVersion#getUserUuid()}
097            */
098            public java.lang.String getVersionUserUuid();
099    
100            public boolean hasLock();
101    
102            public boolean isCheckedOut();
103    
104            public boolean isInHiddenFolder();
105    
106            public boolean isInTrashContainer()
107                    throws com.liferay.portal.kernel.exception.PortalException,
108                            com.liferay.portal.kernel.exception.SystemException;
109    
110            public void setExtraSettingsProperties(
111                    com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties);
112    }