001    /**
002     * Copyright (c) 2000-present 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 aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.model.PersistedModel;
020    import com.liferay.portal.model.TreeModel;
021    
022    /**
023     * 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.
024     *
025     * @author Brian Wing Shun Chan
026     * @see DLFileEntryModel
027     * @see com.liferay.portlet.documentlibrary.model.impl.DLFileEntryImpl
028     * @see com.liferay.portlet.documentlibrary.model.impl.DLFileEntryModelImpl
029     * @generated
030     */
031    @ProviderType
032    public interface DLFileEntry extends DLFileEntryModel, PersistedModel, TreeModel {
033            /*
034             * NOTE FOR DEVELOPERS:
035             *
036             * 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.
037             */
038            @Override
039            public java.lang.String buildTreePath()
040                    throws com.liferay.portal.kernel.exception.PortalException;
041    
042            public java.io.InputStream getContentStream()
043                    throws com.liferay.portal.kernel.exception.PortalException;
044    
045            public java.io.InputStream getContentStream(java.lang.String version)
046                    throws com.liferay.portal.kernel.exception.PortalException;
047    
048            public long getDataRepositoryId();
049    
050            public java.util.Map<java.lang.String, com.liferay.portlet.dynamicdatamapping.storage.DDMFormValues> getDDMFormValuesMap(
051                    long fileVersionId)
052                    throws com.liferay.portal.kernel.exception.PortalException;
053    
054            public com.liferay.portlet.documentlibrary.model.DLFileEntryType getDLFileEntryType()
055                    throws com.liferay.portal.kernel.exception.PortalException;
056    
057            public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties();
058    
059            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileShortcut> getFileShortcuts();
060    
061            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion()
062                    throws com.liferay.portal.kernel.exception.PortalException;
063    
064            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion(
065                    java.lang.String version)
066                    throws com.liferay.portal.kernel.exception.PortalException;
067    
068            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileVersion> getFileVersions(
069                    int status);
070    
071            public int getFileVersionsCount(int status);
072    
073            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder()
074                    throws com.liferay.portal.kernel.exception.PortalException;
075    
076            public java.lang.String getIcon();
077    
078            public java.lang.String getIconCssClass();
079    
080            public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion(
081                    boolean trusted)
082                    throws com.liferay.portal.kernel.exception.PortalException;
083    
084            public com.liferay.portal.kernel.lock.Lock getLock();
085    
086            public java.lang.String getLuceneProperties();
087    
088            /**
089            * @deprecated As of 6.2.0, replaced by {@link DLFileVersion#getUserId()}
090            */
091            @java.lang.Deprecated()
092            public long getVersionUserId();
093    
094            /**
095            * @deprecated As of 6.2.0, replaced by {@link DLFileVersion#getUserName()}
096            */
097            @java.lang.Deprecated()
098            public java.lang.String getVersionUserName();
099    
100            /**
101            * @deprecated As of 6.2.0, replaced by {@link DLFileVersion#getUserUuid()}
102            */
103            @java.lang.Deprecated()
104            public java.lang.String getVersionUserUuid();
105    
106            public boolean hasLock();
107    
108            public boolean isCheckedOut();
109    
110            public boolean isInHiddenFolder();
111    
112            public void setExtraSettingsProperties(
113                    com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties);
114    }