001
014
015 package com.liferay.portlet.documentlibrary.model;
016
017 import com.liferay.portal.model.PersistedModel;
018
019
028 public interface DLFileVersion extends DLFileVersionModel, 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(boolean incrementCounter)
039 throws com.liferay.portal.kernel.exception.PortalException,
040 com.liferay.portal.kernel.exception.SystemException;
041
042 public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties();
043
044 public com.liferay.portlet.documentlibrary.model.DLFileEntry getFileEntry()
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException;
047
048 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder()
049 throws com.liferay.portal.kernel.exception.PortalException,
050 com.liferay.portal.kernel.exception.SystemException;
051
052 public java.lang.String getIcon();
053
054 public com.liferay.portlet.documentlibrary.model.DLFolder getTrashContainer()
055 throws com.liferay.portal.kernel.exception.PortalException,
056 com.liferay.portal.kernel.exception.SystemException;
057
058 public boolean isInTrashContainer()
059 throws com.liferay.portal.kernel.exception.PortalException,
060 com.liferay.portal.kernel.exception.SystemException;
061
062 public void setExtraSettingsProperties(
063 com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties);
064 }