001
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
031 @ProviderType
032 public interface DLFileVersion extends DLFileVersionModel, PersistedModel,
033 TreeModel {
034
039 @Override
040 public java.lang.String buildTreePath()
041 throws com.liferay.portal.kernel.exception.PortalException,
042 com.liferay.portal.kernel.exception.SystemException;
043
044 public java.io.InputStream getContentStream(boolean incrementCounter)
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException;
047
048 public com.liferay.portal.kernel.util.UnicodeProperties getExtraSettingsProperties();
049
050 public com.liferay.portlet.documentlibrary.model.DLFileEntry getFileEntry()
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException;
053
054 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder()
055 throws com.liferay.portal.kernel.exception.PortalException,
056 com.liferay.portal.kernel.exception.SystemException;
057
058 public java.lang.String getIcon();
059
060 public void setExtraSettingsProperties(
061 com.liferay.portal.kernel.util.UnicodeProperties extraSettingsProperties);
062 }