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.io.InputStream getContentStream(boolean incrementCounter)
035 throws com.liferay.portal.kernel.exception.PortalException,
036 com.liferay.portal.kernel.exception.SystemException;
037
038 public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties();
039
040 public com.liferay.portlet.documentlibrary.model.DLFileEntry getFileEntry()
041 throws com.liferay.portal.kernel.exception.PortalException,
042 com.liferay.portal.kernel.exception.SystemException;
043
044 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder()
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException;
047
048 public java.lang.String getIcon();
049
050 public com.liferay.portlet.documentlibrary.model.DLFolder getTrashContainer()
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException;
053
054 public boolean isInTrashContainer()
055 throws com.liferay.portal.kernel.exception.PortalException,
056 com.liferay.portal.kernel.exception.SystemException;
057
058 public void setExtraSettingsProperties(
059 com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties);
060 }