001
014
015 package com.liferay.portlet.documentlibrary.model;
016
017 import com.liferay.portal.model.PersistedModel;
018
019
028 public interface DLFileEntry extends DLFileEntryModel, PersistedModel {
029
034 public java.lang.String buildTreePath()
035 throws com.liferay.portal.kernel.exception.PortalException,
036 com.liferay.portal.kernel.exception.SystemException;
037
038 public java.io.InputStream getContentStream()
039 throws com.liferay.portal.kernel.exception.PortalException,
040 com.liferay.portal.kernel.exception.SystemException;
041
042 public java.io.InputStream getContentStream(java.lang.String version)
043 throws com.liferay.portal.kernel.exception.PortalException,
044 com.liferay.portal.kernel.exception.SystemException;
045
046 public long getDataRepositoryId();
047
048 public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties();
049
050 public java.util.Map<java.lang.String, com.liferay.portlet.dynamicdatamapping.storage.Fields> getFieldsMap(
051 long fileVersionId)
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 throws com.liferay.portal.kernel.exception.PortalException,
057 com.liferay.portal.kernel.exception.SystemException;
058
059 public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion(
060 java.lang.String version)
061 throws com.liferay.portal.kernel.exception.PortalException,
062 com.liferay.portal.kernel.exception.SystemException;
063
064 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileVersion> getFileVersions(
065 int status) throws com.liferay.portal.kernel.exception.SystemException;
066
067 public int getFileVersionsCount(int status)
068 throws com.liferay.portal.kernel.exception.SystemException;
069
070 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder()
071 throws com.liferay.portal.kernel.exception.PortalException,
072 com.liferay.portal.kernel.exception.SystemException;
073
074 public java.lang.String getIcon();
075
076 public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion(
077 boolean trusted)
078 throws com.liferay.portal.kernel.exception.PortalException,
079 com.liferay.portal.kernel.exception.SystemException;
080
081 public com.liferay.portal.model.Lock getLock();
082
083 public java.lang.String getLuceneProperties();
084
085 public com.liferay.portlet.documentlibrary.model.DLFolder getTrashContainer()
086 throws com.liferay.portal.kernel.exception.PortalException,
087 com.liferay.portal.kernel.exception.SystemException;
088
089
092 public long getVersionUserId();
093
094
097 public java.lang.String getVersionUserName();
098
099
102 public java.lang.String getVersionUserUuid();
103
104 public boolean hasLock();
105
106 public boolean isCheckedOut();
107
108 public boolean isInHiddenFolder();
109
110 public void setExtraSettingsProperties(
111 com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties);
112 }