001
014
015 package com.liferay.portlet.documentlibrary.model;
016
017 import com.liferay.portal.model.PersistedModel;
018
019
028 public interface DLFolder extends DLFolderModel, PersistedModel {
029
034 public java.util.List<java.lang.Long> getAncestorFolderIds()
035 throws com.liferay.portal.kernel.exception.PortalException,
036 com.liferay.portal.kernel.exception.SystemException;
037
038 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getAncestors()
039 throws com.liferay.portal.kernel.exception.PortalException,
040 com.liferay.portal.kernel.exception.SystemException;
041
042 public com.liferay.portlet.documentlibrary.model.DLFolder getParentFolder()
043 throws com.liferay.portal.kernel.exception.PortalException,
044 com.liferay.portal.kernel.exception.SystemException;
045
046 public java.lang.String getPath()
047 throws com.liferay.portal.kernel.exception.PortalException,
048 com.liferay.portal.kernel.exception.SystemException;
049
050 public java.lang.String[] getPathArray()
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException;
053
054 public com.liferay.portlet.documentlibrary.model.DLFolder getTrashContainer();
055
056 public boolean hasInheritableLock();
057
058 public boolean hasLock();
059
060 public boolean isInHiddenFolder();
061
062 public boolean isInTrashContainer();
063
064 public boolean isLocked();
065
066 public boolean isRoot();
067 }