Object
com.liferay.document.library.kernel.service.persistence.DLFolderUtil

public class DLFolderUtil extends Object
The persistence utility for the document library folder service. This utility wraps com.liferay.portlet.documentlibrary.service.persistence.impl.DLFolderPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.

Caching information and settings can be found in portal.properties

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static boolean
    addDLFileEntryType(long pk, long dlFileEntryTypePK)
    Adds an association between the document library folder and the document library file entry type.
    static boolean
    addDLFileEntryType(long pk, DLFileEntryType dlFileEntryType)
    Adds an association between the document library folder and the document library file entry type.
    static boolean
    addDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
    Adds an association between the document library folder and the document library file entry types.
    static boolean
    addDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
    Adds an association between the document library folder and the document library file entry types.
    static void
    Caches the document library folder in the entity cache if it is enabled.
    static void
    Caches the document library folders in the entity cache if it is enabled.
    static void
     
    static void
    clearCache(DLFolder dlFolder)
     
    static void
    Clears all associations between the document library folder and its document library file entry types.
    static boolean
    containsDLFileEntryType(long pk, long dlFileEntryTypePK)
    Returns true if the document library file entry type is associated with the document library folder.
    static boolean
    Returns true if the document library folder has any document library file entry types associated with it.
    static int
    Returns the number of document library folders.
    static int
    countByC_NotS(long companyId, int status)
    Returns the number of document library folders where companyId = ? and status ≠ ?.
    static int
    countByCompanyId(long companyId)
    Returns the number of document library folders where companyId = ?.
    static int
    countByERC_G(String externalReferenceCode, long groupId)
    Returns the number of document library folders where externalReferenceCode = ? and groupId = ?.
    static int
    countByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
    Returns the number of document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static int
    countByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
    Returns the number of document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static int
    countByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static int
    countByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
    Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static int
    countByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
    Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static int
    countByG_P(long groupId, long parentFolderId)
    Returns the number of document library folders where groupId = ? and parentFolderId = ?.
    static int
    countByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
    Returns the number of document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static int
    countByG_P_N(long groupId, long parentFolderId, String name)
    Returns the number of document library folders where groupId = ? and parentFolderId = ? and name = ?.
    static int
    countByGroupId(long groupId)
    Returns the number of document library folders where groupId = ?.
    static int
    countByGtF_C_P(long folderId, long companyId, long parentFolderId)
    Returns the number of document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    static int
    countByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status)
    Returns the number of document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static int
    countByP_N(long parentFolderId, String name)
    Returns the number of document library folders where parentFolderId = ? and name = ?.
    static int
    countByR_M(long repositoryId, boolean mountPoint)
    Returns the number of document library folders where repositoryId = ? and mountPoint = ?.
    static int
    countByR_P(long repositoryId, long parentFolderId)
    Returns the number of document library folders where repositoryId = ? and parentFolderId = ?.
    static int
    countByRepositoryId(long repositoryId)
    Returns the number of document library folders where repositoryId = ?.
    static int
    Returns the number of document library folders where uuid = ?.
    static int
    countByUuid_C(String uuid, long companyId)
    Returns the number of document library folders where uuid = ? and companyId = ?.
    static int
    countByUUID_G(String uuid, long groupId)
    Returns the number of document library folders where uuid = ? and groupId = ?.
    static long
     
    static DLFolder
    create(long folderId)
    Creates a new document library folder with the primary key.
    static DLFolder
    fetchByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?.
    static DLFolder
    fetchByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?.
    static DLFolder
    fetchByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ?.
    static DLFolder
    fetchByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ?.
    static DLFolder
    fetchByERC_G(String externalReferenceCode, long groupId)
    Returns the document library folder where externalReferenceCode = ? and groupId = ? or returns null if it could not be found.
    static DLFolder
    fetchByERC_G(String externalReferenceCode, long groupId, boolean useFinderCache)
    Returns the document library folder where externalReferenceCode = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
    static DLFolder
    fetchByG_M_LikeT_H_First(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static DLFolder
    fetchByG_M_LikeT_H_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static DLFolder
    fetchByG_M_LikeT_H_NotS_First(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder
    fetchByG_M_LikeT_H_NotS_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder
    fetchByG_M_P_First(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static DLFolder
    fetchByG_M_P_H_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static DLFolder
    fetchByG_M_P_H_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static DLFolder
    fetchByG_M_P_H_S_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    fetchByG_M_P_H_S_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    fetchByG_M_P_Last(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static DLFolder
    fetchByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    static DLFolder
    fetchByG_P_H_S_First(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    fetchByG_P_H_S_Last(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    fetchByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    static DLFolder
    fetchByG_P_N(long groupId, long parentFolderId, String name)
    Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or returns null if it could not be found.
    static DLFolder
    fetchByG_P_N(long groupId, long parentFolderId, String name, boolean useFinderCache)
    Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
    static DLFolder
    fetchByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ?.
    static DLFolder
    fetchByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ?.
    static DLFolder
    fetchByGtF_C_P_First(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
    static DLFolder
    fetchByGtF_C_P_Last(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
    static DLFolder
    fetchByGtF_C_P_NotS_First(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static DLFolder
    fetchByGtF_C_P_NotS_Last(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static DLFolder
    fetchByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?.
    static DLFolder
    fetchByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?.
    static DLFolder
    fetchByPrimaryKey(long folderId)
    Returns the document library folder with the primary key or returns null if it could not be found.
     
    static DLFolder
    fetchByR_M(long repositoryId, boolean mountPoint)
    Returns the document library folder where repositoryId = ? and mountPoint = ? or returns null if it could not be found.
    static DLFolder
    fetchByR_M(long repositoryId, boolean mountPoint, boolean useFinderCache)
    Returns the document library folder where repositoryId = ? and mountPoint = ? or returns null if it could not be found, optionally using the finder cache.
    static DLFolder
    fetchByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    static DLFolder
    fetchByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    static DLFolder
    fetchByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ?.
    static DLFolder
    fetchByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ?.
    static DLFolder
    fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where uuid = ? and companyId = ?.
    static DLFolder
    fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where uuid = ? and companyId = ?.
    static DLFolder
    Returns the first document library folder in the ordered set where uuid = ?.
    static DLFolder
    fetchByUUID_G(String uuid, long groupId)
    Returns the document library folder where uuid = ? and groupId = ? or returns null if it could not be found.
    static DLFolder
    fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
    Returns the document library folder where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
    static DLFolder
    Returns the last document library folder in the ordered set where uuid = ?.
    static int
    filterCountByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
    Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static int
    filterCountByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
    Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static int
    filterCountByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static int
    filterCountByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
    Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static int
    filterCountByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
    Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static int
    filterCountByG_P(long groupId, long parentFolderId)
    Returns the number of document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
    static int
    filterCountByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
    Returns the number of document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static int
    filterCountByGroupId(long groupId)
    Returns the number of document library folders that the user has permission to view where groupId = ?.
    static List<DLFolder>
    filterFindByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
    Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
    Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static List<DLFolder>
    filterFindByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static List<DLFolder>
    filterFindByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder[]
    filterFindByG_M_LikeT_H_NotS_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder[]
    filterFindByG_M_LikeT_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
    Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static DLFolder[]
    filterFindByG_M_P_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
    Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder[]
    filterFindByG_M_P_H_S_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder[]
    filterFindByG_M_P_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_P(long groupId, long parentFolderId)
    Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_P(long groupId, long parentFolderId, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
    Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder[]
    filterFindByG_P_H_S_PrevAndNext(long folderId, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder[]
    filterFindByG_P_PrevAndNext(long folderId, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    filterFindByGroupId(long groupId)
    Returns all the document library folders that the user has permission to view where groupId = ?.
    static List<DLFolder>
    filterFindByGroupId(long groupId, int start, int end)
    Returns a range of all the document library folders that the user has permission to view where groupId = ?.
    static List<DLFolder>
    filterFindByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ?.
    static DLFolder[]
    filterFindByGroupId_PrevAndNext(long folderId, long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ?.
    static List<DLFolder>
    Returns all the document library folders.
    static List<DLFolder>
    findAll(int start, int end)
    Returns a range of all the document library folders.
    static List<DLFolder>
    findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders.
    static List<DLFolder>
    findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders.
    static List<DLFolder>
    findByC_NotS(long companyId, int status)
    Returns all the document library folders where companyId = ? and status ≠ ?.
    static List<DLFolder>
    findByC_NotS(long companyId, int status, int start, int end)
    Returns a range of all the document library folders where companyId = ? and status ≠ ?.
    static List<DLFolder>
    findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where companyId = ? and status ≠ ?.
    static List<DLFolder>
    findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where companyId = ? and status ≠ ?.
    static DLFolder
    findByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?.
    static DLFolder
    findByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?.
    static DLFolder[]
    findByC_NotS_PrevAndNext(long folderId, long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where companyId = ? and status ≠ ?.
    static List<DLFolder>
    findByCompanyId(long companyId)
    Returns all the document library folders where companyId = ?.
    static List<DLFolder>
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the document library folders where companyId = ?.
    static List<DLFolder>
    findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where companyId = ?.
    static List<DLFolder>
    findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where companyId = ?.
    static DLFolder
    findByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ?.
    static DLFolder
    findByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ?.
    static DLFolder[]
    findByCompanyId_PrevAndNext(long folderId, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where companyId = ?.
    static DLFolder
    findByERC_G(String externalReferenceCode, long groupId)
    Returns the document library folder where externalReferenceCode = ? and groupId = ? or throws a NoSuchFolderException if it could not be found.
    static List<DLFolder>
    findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
    Returns all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end)
    Returns a range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static DLFolder
    findByG_M_LikeT_H_First(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static DLFolder
    findByG_M_LikeT_H_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
    Returns all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static List<DLFolder>
    findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end)
    Returns a range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static List<DLFolder>
    findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static List<DLFolder>
    findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder
    findByG_M_LikeT_H_NotS_First(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder
    findByG_M_LikeT_H_NotS_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder[]
    findByG_M_LikeT_H_NotS_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
    static DLFolder[]
    findByG_M_LikeT_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
    static List<DLFolder>
    findByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end)
    Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static DLFolder
    findByG_M_P_First(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
    Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end)
    Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static DLFolder
    findByG_M_P_H_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static DLFolder
    findByG_M_P_H_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static DLFolder[]
    findByG_M_P_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
    static List<DLFolder>
    findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
    Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end)
    Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    findByG_M_P_H_S_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    findByG_M_P_H_S_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder[]
    findByG_M_P_H_S_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    findByG_M_P_Last(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static DLFolder[]
    findByG_M_P_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_P(long groupId, long parentFolderId)
    Returns all the document library folders where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_P(long groupId, long parentFolderId, int start, int end)
    Returns a range of all the document library folders where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ?.
    static DLFolder
    findByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
    Returns all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end)
    Returns a range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static List<DLFolder>
    findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    findByG_P_H_S_First(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    findByG_P_H_S_Last(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder[]
    findByG_P_H_S_PrevAndNext(long folderId, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
    static DLFolder
    findByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    static DLFolder
    findByG_P_N(long groupId, long parentFolderId, String name)
    Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or throws a NoSuchFolderException if it could not be found.
    static DLFolder[]
    findByG_P_PrevAndNext(long folderId, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByGroupId(long groupId)
    Returns all the document library folders where groupId = ?.
    static List<DLFolder>
    findByGroupId(long groupId, int start, int end)
    Returns a range of all the document library folders where groupId = ?.
    static List<DLFolder>
    findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ?.
    static List<DLFolder>
    findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ?.
    static DLFolder
    findByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ?.
    static DLFolder
    findByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ?.
    static DLFolder[]
    findByGroupId_PrevAndNext(long folderId, long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where groupId = ?.
    static List<DLFolder>
    findByGtF_C_P(long folderId, long companyId, long parentFolderId)
    Returns all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByGtF_C_P(long folderId, long companyId, long parentFolderId, int start, int end)
    Returns a range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByGtF_C_P(long folderId, long companyId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByGtF_C_P(long folderId, long companyId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    static DLFolder
    findByGtF_C_P_First(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
    static DLFolder
    findByGtF_C_P_Last(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status)
    Returns all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static List<DLFolder>
    findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end)
    Returns a range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static List<DLFolder>
    findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static List<DLFolder>
    findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static DLFolder
    findByGtF_C_P_NotS_First(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static DLFolder
    findByGtF_C_P_NotS_Last(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
    static List<DLFolder>
    findByP_N(long parentFolderId, String name)
    Returns all the document library folders where parentFolderId = ? and name = ?.
    static List<DLFolder>
    findByP_N(long parentFolderId, String name, int start, int end)
    Returns a range of all the document library folders where parentFolderId = ? and name = ?.
    static List<DLFolder>
    findByP_N(long parentFolderId, String name, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where parentFolderId = ? and name = ?.
    static List<DLFolder>
    findByP_N(long parentFolderId, String name, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where parentFolderId = ? and name = ?.
    static DLFolder
    findByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?.
    static DLFolder
    findByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?.
    static DLFolder[]
    findByP_N_PrevAndNext(long folderId, long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where parentFolderId = ? and name = ?.
    static DLFolder
    findByPrimaryKey(long folderId)
    Returns the document library folder with the primary key or throws a NoSuchFolderException if it could not be found.
    static DLFolder
    findByR_M(long repositoryId, boolean mountPoint)
    Returns the document library folder where repositoryId = ? and mountPoint = ? or throws a NoSuchFolderException if it could not be found.
    static List<DLFolder>
    findByR_P(long repositoryId, long parentFolderId)
    Returns all the document library folders where repositoryId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByR_P(long repositoryId, long parentFolderId, int start, int end)
    Returns a range of all the document library folders where repositoryId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByR_P(long repositoryId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where repositoryId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByR_P(long repositoryId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where repositoryId = ? and parentFolderId = ?.
    static DLFolder
    findByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    static DLFolder
    findByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    static DLFolder[]
    findByR_P_PrevAndNext(long folderId, long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    static List<DLFolder>
    findByRepositoryId(long repositoryId)
    Returns all the document library folders where repositoryId = ?.
    static List<DLFolder>
    findByRepositoryId(long repositoryId, int start, int end)
    Returns a range of all the document library folders where repositoryId = ?.
    static List<DLFolder>
    findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where repositoryId = ?.
    static List<DLFolder>
    findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where repositoryId = ?.
    static DLFolder
    findByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ?.
    static DLFolder
    findByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ?.
    static DLFolder[]
    findByRepositoryId_PrevAndNext(long folderId, long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where repositoryId = ?.
    static List<DLFolder>
    Returns all the document library folders where uuid = ?.
    static List<DLFolder>
    findByUuid(String uuid, int start, int end)
    Returns a range of all the document library folders where uuid = ?.
    static List<DLFolder>
    findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where uuid = ?.
    static List<DLFolder>
    findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where uuid = ?.
    static List<DLFolder>
    findByUuid_C(String uuid, long companyId)
    Returns all the document library folders where uuid = ? and companyId = ?.
    static List<DLFolder>
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the document library folders where uuid = ? and companyId = ?.
    static List<DLFolder>
    findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where uuid = ? and companyId = ?.
    static List<DLFolder>
    findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where uuid = ? and companyId = ?.
    static DLFolder
    findByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where uuid = ? and companyId = ?.
    static DLFolder
    findByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where uuid = ? and companyId = ?.
    static DLFolder[]
    findByUuid_C_PrevAndNext(long folderId, String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where uuid = ? and companyId = ?.
    static DLFolder
    Returns the first document library folder in the ordered set where uuid = ?.
    static DLFolder
    findByUUID_G(String uuid, long groupId)
    Returns the document library folder where uuid = ? and groupId = ? or throws a NoSuchFolderException if it could not be found.
    static DLFolder
    findByUuid_Last(String uuid, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where uuid = ?.
    static DLFolder[]
    findByUuid_PrevAndNext(long folderId, String uuid, OrderByComparator<DLFolder> orderByComparator)
    Returns the document library folders before and after the current document library folder in the ordered set where uuid = ?.
    static List<DLFolder>
     
    static List<DLFolder>
    findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
     
    static List<DLFolder>
    findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<DLFolder> orderByComparator)
     
    static long[]
    Returns the primaryKeys of document library file entry types associated with the document library folder.
    Returns all the document library file entry types associated with the document library folder.
    getDLFileEntryTypes(long pk, int start, int end)
    Returns a range of all the document library file entry types associated with the document library folder.
    getDLFileEntryTypes(long pk, int start, int end, OrderByComparator<DLFileEntryType> orderByComparator)
    Returns an ordered range of all the document library file entry types associated with the document library folder.
    static int
    Returns the number of document library file entry types associated with the document library folder.
     
    static DLFolder
    remove(long folderId)
    Removes the document library folder with the primary key from the database.
    static void
    Removes all the document library folders from the database.
    static void
    removeByC_NotS(long companyId, int status)
    Removes all the document library folders where companyId = ? and status ≠ ? from the database.
    static void
    removeByCompanyId(long companyId)
    Removes all the document library folders where companyId = ? from the database.
    static DLFolder
    removeByERC_G(String externalReferenceCode, long groupId)
    Removes the document library folder where externalReferenceCode = ? and groupId = ? from the database.
    static void
    removeByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
    Removes all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? from the database.
    static void
    removeByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
    Removes all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ? from the database.
    static void
    removeByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? from the database.
    static void
    removeByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
    Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? from the database.
    static void
    removeByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
    Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ? from the database.
    static void
    removeByG_P(long groupId, long parentFolderId)
    Removes all the document library folders where groupId = ? and parentFolderId = ? from the database.
    static void
    removeByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
    Removes all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ? from the database.
    static DLFolder
    removeByG_P_N(long groupId, long parentFolderId, String name)
    Removes the document library folder where groupId = ? and parentFolderId = ? and name = ? from the database.
    static void
    removeByGroupId(long groupId)
    Removes all the document library folders where groupId = ? from the database.
    static void
    removeByGtF_C_P(long folderId, long companyId, long parentFolderId)
    Removes all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? from the database.
    static void
    removeByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status)
    Removes all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ? from the database.
    static void
    removeByP_N(long parentFolderId, String name)
    Removes all the document library folders where parentFolderId = ? and name = ? from the database.
    static DLFolder
    removeByR_M(long repositoryId, boolean mountPoint)
    Removes the document library folder where repositoryId = ? and mountPoint = ? from the database.
    static void
    removeByR_P(long repositoryId, long parentFolderId)
    Removes all the document library folders where repositoryId = ? and parentFolderId = ? from the database.
    static void
    removeByRepositoryId(long repositoryId)
    Removes all the document library folders where repositoryId = ? from the database.
    static void
    Removes all the document library folders where uuid = ? from the database.
    static void
    removeByUuid_C(String uuid, long companyId)
    Removes all the document library folders where uuid = ? and companyId = ? from the database.
    static DLFolder
    removeByUUID_G(String uuid, long groupId)
    Removes the document library folder where uuid = ? and groupId = ? from the database.
    static void
    removeDLFileEntryType(long pk, long dlFileEntryTypePK)
    Removes the association between the document library folder and the document library file entry type.
    static void
    removeDLFileEntryType(long pk, DLFileEntryType dlFileEntryType)
    Removes the association between the document library folder and the document library file entry type.
    static void
    removeDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
    Removes the association between the document library folder and the document library file entry types.
    static void
    removeDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
    Removes the association between the document library folder and the document library file entry types.
    static void
    setDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
    Sets the document library file entry types associated with the document library folder, removing and adding associations as necessary.
    static void
    setDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
    Sets the document library file entry types associated with the document library folder, removing and adding associations as necessary.
    static void
     
    static DLFolder
    update(DLFolder dlFolder)
     
    static DLFolder
    update(DLFolder dlFolder, ServiceContext serviceContext)
     
    static DLFolder
    updateImpl(DLFolder dlFolder)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DLFolderUtil

      public DLFolderUtil()
  • Method Details

    • clearCache

      public static void clearCache()
      See Also:
    • clearCache

      public static void clearCache(DLFolder dlFolder)
      See Also:
    • countWithDynamicQuery

      public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
      See Also:
    • fetchByPrimaryKeys

      public static Map<Serializable,DLFolder> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
      See Also:
    • findWithDynamicQuery

      public static List<DLFolder> findWithDynamicQuery(DynamicQuery dynamicQuery)
      See Also:
    • findWithDynamicQuery

      public static List<DLFolder> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
      See Also:
    • findWithDynamicQuery

      public static List<DLFolder> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      See Also:
    • update

      public static DLFolder update(DLFolder dlFolder)
      See Also:
    • update

      public static DLFolder update(DLFolder dlFolder, ServiceContext serviceContext)
      See Also:
    • findByUuid

      public static List<DLFolder> findByUuid(String uuid)
      Returns all the document library folders where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the matching document library folders
    • findByUuid

      public static List<DLFolder> findByUuid(String uuid, int start, int end)
      Returns a range of all the document library folders where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByUuid

      public static List<DLFolder> findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByUuid

      public static List<DLFolder> findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where uuid = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      uuid - the uuid
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByUuid_First

      public static DLFolder findByUuid_First(String uuid, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByUuid_First

      public static DLFolder fetchByUuid_First(String uuid, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByUuid_Last

      public static DLFolder findByUuid_Last(String uuid, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByUuid_Last

      public static DLFolder fetchByUuid_Last(String uuid, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where uuid = ?.
      Parameters:
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByUuid_PrevAndNext

      public static DLFolder[] findByUuid_PrevAndNext(long folderId, String uuid, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where uuid = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      uuid - the uuid
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByUuid

      public static void removeByUuid(String uuid)
      Removes all the document library folders where uuid = ? from the database.
      Parameters:
      uuid - the uuid
    • countByUuid

      public static int countByUuid(String uuid)
      Returns the number of document library folders where uuid = ?.
      Parameters:
      uuid - the uuid
      Returns:
      the number of matching document library folders
    • findByUUID_G

      public static DLFolder findByUUID_G(String uuid, long groupId) throws NoSuchFolderException
      Returns the document library folder where uuid = ? and groupId = ? or throws a NoSuchFolderException if it could not be found.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByUUID_G

      public static DLFolder fetchByUUID_G(String uuid, long groupId)
      Returns the document library folder where uuid = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • fetchByUUID_G

      public static DLFolder fetchByUUID_G(String uuid, long groupId, boolean useFinderCache)
      Returns the document library folder where uuid = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • removeByUUID_G

      public static DLFolder removeByUUID_G(String uuid, long groupId) throws NoSuchFolderException
      Removes the document library folder where uuid = ? and groupId = ? from the database.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the document library folder that was removed
      Throws:
      NoSuchFolderException
    • countByUUID_G

      public static int countByUUID_G(String uuid, long groupId)
      Returns the number of document library folders where uuid = ? and groupId = ?.
      Parameters:
      uuid - the uuid
      groupId - the group ID
      Returns:
      the number of matching document library folders
    • findByUuid_C

      public static List<DLFolder> findByUuid_C(String uuid, long companyId)
      Returns all the document library folders where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the matching document library folders
    • findByUuid_C

      public static List<DLFolder> findByUuid_C(String uuid, long companyId, int start, int end)
      Returns a range of all the document library folders where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByUuid_C

      public static List<DLFolder> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByUuid_C

      public static List<DLFolder> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where uuid = ? and companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      uuid - the uuid
      companyId - the company ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByUuid_C_First

      public static DLFolder findByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByUuid_C_First

      public static DLFolder fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByUuid_C_Last

      public static DLFolder findByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByUuid_C_Last

      public static DLFolder fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByUuid_C_PrevAndNext

      public static DLFolder[] findByUuid_C_PrevAndNext(long folderId, String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where uuid = ? and companyId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      uuid - the uuid
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByUuid_C

      public static void removeByUuid_C(String uuid, long companyId)
      Removes all the document library folders where uuid = ? and companyId = ? from the database.
      Parameters:
      uuid - the uuid
      companyId - the company ID
    • countByUuid_C

      public static int countByUuid_C(String uuid, long companyId)
      Returns the number of document library folders where uuid = ? and companyId = ?.
      Parameters:
      uuid - the uuid
      companyId - the company ID
      Returns:
      the number of matching document library folders
    • findByGroupId

      public static List<DLFolder> findByGroupId(long groupId)
      Returns all the document library folders where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching document library folders
    • findByGroupId

      public static List<DLFolder> findByGroupId(long groupId, int start, int end)
      Returns a range of all the document library folders where groupId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByGroupId

      public static List<DLFolder> findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByGroupId

      public static List<DLFolder> findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByGroupId_First

      public static DLFolder findByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByGroupId_First

      public static DLFolder fetchByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByGroupId_Last

      public static DLFolder findByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByGroupId_Last

      public static DLFolder fetchByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ?.
      Parameters:
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByGroupId_PrevAndNext

      public static DLFolder[] findByGroupId_PrevAndNext(long folderId, long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByGroupId

      public static List<DLFolder> filterFindByGroupId(long groupId)
      Returns all the document library folders that the user has permission to view where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByGroupId

      public static List<DLFolder> filterFindByGroupId(long groupId, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByGroupId

      public static List<DLFolder> filterFindByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByGroupId_PrevAndNext

      public static DLFolder[] filterFindByGroupId_PrevAndNext(long folderId, long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByGroupId

      public static void removeByGroupId(long groupId)
      Removes all the document library folders where groupId = ? from the database.
      Parameters:
      groupId - the group ID
    • countByGroupId

      public static int countByGroupId(long groupId)
      Returns the number of document library folders where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching document library folders
    • filterCountByGroupId

      public static int filterCountByGroupId(long groupId)
      Returns the number of document library folders that the user has permission to view where groupId = ?.
      Parameters:
      groupId - the group ID
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByCompanyId

      public static List<DLFolder> findByCompanyId(long companyId)
      Returns all the document library folders where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the matching document library folders
    • findByCompanyId

      public static List<DLFolder> findByCompanyId(long companyId, int start, int end)
      Returns a range of all the document library folders where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByCompanyId

      public static List<DLFolder> findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByCompanyId

      public static List<DLFolder> findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where companyId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      companyId - the company ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByCompanyId_First

      public static DLFolder findByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByCompanyId_First

      public static DLFolder fetchByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByCompanyId_Last

      public static DLFolder findByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByCompanyId_Last

      public static DLFolder fetchByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where companyId = ?.
      Parameters:
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByCompanyId_PrevAndNext

      public static DLFolder[] findByCompanyId_PrevAndNext(long folderId, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where companyId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      companyId - the company ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByCompanyId

      public static void removeByCompanyId(long companyId)
      Removes all the document library folders where companyId = ? from the database.
      Parameters:
      companyId - the company ID
    • countByCompanyId

      public static int countByCompanyId(long companyId)
      Returns the number of document library folders where companyId = ?.
      Parameters:
      companyId - the company ID
      Returns:
      the number of matching document library folders
    • findByRepositoryId

      public static List<DLFolder> findByRepositoryId(long repositoryId)
      Returns all the document library folders where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      Returns:
      the matching document library folders
    • findByRepositoryId

      public static List<DLFolder> findByRepositoryId(long repositoryId, int start, int end)
      Returns a range of all the document library folders where repositoryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      repositoryId - the repository ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByRepositoryId

      public static List<DLFolder> findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where repositoryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      repositoryId - the repository ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByRepositoryId

      public static List<DLFolder> findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where repositoryId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      repositoryId - the repository ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByRepositoryId_First

      public static DLFolder findByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByRepositoryId_First

      public static DLFolder fetchByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByRepositoryId_Last

      public static DLFolder findByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByRepositoryId_Last

      public static DLFolder fetchByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByRepositoryId_PrevAndNext

      public static DLFolder[] findByRepositoryId_PrevAndNext(long folderId, long repositoryId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where repositoryId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      repositoryId - the repository ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByRepositoryId

      public static void removeByRepositoryId(long repositoryId)
      Removes all the document library folders where repositoryId = ? from the database.
      Parameters:
      repositoryId - the repository ID
    • countByRepositoryId

      public static int countByRepositoryId(long repositoryId)
      Returns the number of document library folders where repositoryId = ?.
      Parameters:
      repositoryId - the repository ID
      Returns:
      the number of matching document library folders
    • findByG_P

      public static List<DLFolder> findByG_P(long groupId, long parentFolderId)
      Returns all the document library folders where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      Returns:
      the matching document library folders
    • findByG_P

      public static List<DLFolder> findByG_P(long groupId, long parentFolderId, int start, int end)
      Returns a range of all the document library folders where groupId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_P

      public static List<DLFolder> findByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_P

      public static List<DLFolder> findByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_P_First

      public static DLFolder findByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_P_First

      public static DLFolder fetchByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_P_Last

      public static DLFolder findByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_P_Last

      public static DLFolder fetchByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_P_PrevAndNext

      public static DLFolder[] findByG_P_PrevAndNext(long folderId, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and parentFolderId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_P

      public static List<DLFolder> filterFindByG_P(long groupId, long parentFolderId)
      Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_P

      public static List<DLFolder> filterFindByG_P(long groupId, long parentFolderId, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_P

      public static List<DLFolder> filterFindByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_P_PrevAndNext

      public static DLFolder[] filterFindByG_P_PrevAndNext(long folderId, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_P

      public static void removeByG_P(long groupId, long parentFolderId)
      Removes all the document library folders where groupId = ? and parentFolderId = ? from the database.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
    • countByG_P

      public static int countByG_P(long groupId, long parentFolderId)
      Returns the number of document library folders where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      Returns:
      the number of matching document library folders
    • filterCountByG_P

      public static int filterCountByG_P(long groupId, long parentFolderId)
      Returns the number of document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByC_NotS

      public static List<DLFolder> findByC_NotS(long companyId, int status)
      Returns all the document library folders where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the matching document library folders
    • findByC_NotS

      public static List<DLFolder> findByC_NotS(long companyId, int status, int start, int end)
      Returns a range of all the document library folders where companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByC_NotS

      public static List<DLFolder> findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByC_NotS

      public static List<DLFolder> findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where companyId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      companyId - the company ID
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByC_NotS_First

      public static DLFolder findByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByC_NotS_First

      public static DLFolder fetchByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByC_NotS_Last

      public static DLFolder findByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByC_NotS_Last

      public static DLFolder fetchByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByC_NotS_PrevAndNext

      public static DLFolder[] findByC_NotS_PrevAndNext(long folderId, long companyId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where companyId = ? and status ≠ ?.
      Parameters:
      folderId - the primary key of the current document library folder
      companyId - the company ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByC_NotS

      public static void removeByC_NotS(long companyId, int status)
      Removes all the document library folders where companyId = ? and status ≠ ? from the database.
      Parameters:
      companyId - the company ID
      status - the status
    • countByC_NotS

      public static int countByC_NotS(long companyId, int status)
      Returns the number of document library folders where companyId = ? and status ≠ ?.
      Parameters:
      companyId - the company ID
      status - the status
      Returns:
      the number of matching document library folders
    • findByR_M

      public static DLFolder findByR_M(long repositoryId, boolean mountPoint) throws NoSuchFolderException
      Returns the document library folder where repositoryId = ? and mountPoint = ? or throws a NoSuchFolderException if it could not be found.
      Parameters:
      repositoryId - the repository ID
      mountPoint - the mount point
      Returns:
      the matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByR_M

      public static DLFolder fetchByR_M(long repositoryId, boolean mountPoint)
      Returns the document library folder where repositoryId = ? and mountPoint = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      repositoryId - the repository ID
      mountPoint - the mount point
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • fetchByR_M

      public static DLFolder fetchByR_M(long repositoryId, boolean mountPoint, boolean useFinderCache)
      Returns the document library folder where repositoryId = ? and mountPoint = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      repositoryId - the repository ID
      mountPoint - the mount point
      useFinderCache - whether to use the finder cache
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • removeByR_M

      public static DLFolder removeByR_M(long repositoryId, boolean mountPoint) throws NoSuchFolderException
      Removes the document library folder where repositoryId = ? and mountPoint = ? from the database.
      Parameters:
      repositoryId - the repository ID
      mountPoint - the mount point
      Returns:
      the document library folder that was removed
      Throws:
      NoSuchFolderException
    • countByR_M

      public static int countByR_M(long repositoryId, boolean mountPoint)
      Returns the number of document library folders where repositoryId = ? and mountPoint = ?.
      Parameters:
      repositoryId - the repository ID
      mountPoint - the mount point
      Returns:
      the number of matching document library folders
    • findByR_P

      public static List<DLFolder> findByR_P(long repositoryId, long parentFolderId)
      Returns all the document library folders where repositoryId = ? and parentFolderId = ?.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      Returns:
      the matching document library folders
    • findByR_P

      public static List<DLFolder> findByR_P(long repositoryId, long parentFolderId, int start, int end)
      Returns a range of all the document library folders where repositoryId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByR_P

      public static List<DLFolder> findByR_P(long repositoryId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where repositoryId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByR_P

      public static List<DLFolder> findByR_P(long repositoryId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where repositoryId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByR_P_First

      public static DLFolder findByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByR_P_First

      public static DLFolder fetchByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByR_P_Last

      public static DLFolder findByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByR_P_Last

      public static DLFolder fetchByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByR_P_PrevAndNext

      public static DLFolder[] findByR_P_PrevAndNext(long folderId, long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByR_P

      public static void removeByR_P(long repositoryId, long parentFolderId)
      Removes all the document library folders where repositoryId = ? and parentFolderId = ? from the database.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
    • countByR_P

      public static int countByR_P(long repositoryId, long parentFolderId)
      Returns the number of document library folders where repositoryId = ? and parentFolderId = ?.
      Parameters:
      repositoryId - the repository ID
      parentFolderId - the parent folder ID
      Returns:
      the number of matching document library folders
    • findByP_N

      public static List<DLFolder> findByP_N(long parentFolderId, String name)
      Returns all the document library folders where parentFolderId = ? and name = ?.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      Returns:
      the matching document library folders
    • findByP_N

      public static List<DLFolder> findByP_N(long parentFolderId, String name, int start, int end)
      Returns a range of all the document library folders where parentFolderId = ? and name = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByP_N

      public static List<DLFolder> findByP_N(long parentFolderId, String name, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where parentFolderId = ? and name = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByP_N

      public static List<DLFolder> findByP_N(long parentFolderId, String name, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where parentFolderId = ? and name = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByP_N_First

      public static DLFolder findByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByP_N_First

      public static DLFolder fetchByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByP_N_Last

      public static DLFolder findByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByP_N_Last

      public static DLFolder fetchByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByP_N_PrevAndNext

      public static DLFolder[] findByP_N_PrevAndNext(long folderId, long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where parentFolderId = ? and name = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      parentFolderId - the parent folder ID
      name - the name
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByP_N

      public static void removeByP_N(long parentFolderId, String name)
      Removes all the document library folders where parentFolderId = ? and name = ? from the database.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
    • countByP_N

      public static int countByP_N(long parentFolderId, String name)
      Returns the number of document library folders where parentFolderId = ? and name = ?.
      Parameters:
      parentFolderId - the parent folder ID
      name - the name
      Returns:
      the number of matching document library folders
    • findByGtF_C_P

      public static List<DLFolder> findByGtF_C_P(long folderId, long companyId, long parentFolderId)
      Returns all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      Returns:
      the matching document library folders
    • findByGtF_C_P

      public static List<DLFolder> findByGtF_C_P(long folderId, long companyId, long parentFolderId, int start, int end)
      Returns a range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByGtF_C_P

      public static List<DLFolder> findByGtF_C_P(long folderId, long companyId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByGtF_C_P

      public static List<DLFolder> findByGtF_C_P(long folderId, long companyId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByGtF_C_P_First

      public static DLFolder findByGtF_C_P_First(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByGtF_C_P_First

      public static DLFolder fetchByGtF_C_P_First(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByGtF_C_P_Last

      public static DLFolder findByGtF_C_P_Last(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByGtF_C_P_Last

      public static DLFolder fetchByGtF_C_P_Last(long folderId, long companyId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • removeByGtF_C_P

      public static void removeByGtF_C_P(long folderId, long companyId, long parentFolderId)
      Removes all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? from the database.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
    • countByGtF_C_P

      public static int countByGtF_C_P(long folderId, long companyId, long parentFolderId)
      Returns the number of document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      Returns:
      the number of matching document library folders
    • findByG_M_P

      public static List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
      Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      Returns:
      the matching document library folders
    • findByG_M_P

      public static List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end)
      Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_M_P

      public static List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_M_P

      public static List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_M_P_First

      public static DLFolder findByG_M_P_First(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_P_First

      public static DLFolder fetchByG_M_P_First(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_P_Last

      public static DLFolder findByG_M_P_Last(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_P_Last

      public static DLFolder fetchByG_M_P_Last(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_P_PrevAndNext

      public static DLFolder[] findByG_M_P_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_M_P

      public static List<DLFolder> filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
      Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_M_P

      public static List<DLFolder> filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_M_P

      public static List<DLFolder> filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_M_P_PrevAndNext

      public static DLFolder[] filterFindByG_M_P_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_M_P

      public static void removeByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
      Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? from the database.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
    • countByG_M_P

      public static int countByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
      Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      Returns:
      the number of matching document library folders
    • filterCountByG_M_P

      public static int filterCountByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
      Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByG_P_N

      public static DLFolder findByG_P_N(long groupId, long parentFolderId, String name) throws NoSuchFolderException
      Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or throws a NoSuchFolderException if it could not be found.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      name - the name
      Returns:
      the matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_P_N

      public static DLFolder fetchByG_P_N(long groupId, long parentFolderId, String name)
      Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      name - the name
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • fetchByG_P_N

      public static DLFolder fetchByG_P_N(long groupId, long parentFolderId, String name, boolean useFinderCache)
      Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      name - the name
      useFinderCache - whether to use the finder cache
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • removeByG_P_N

      public static DLFolder removeByG_P_N(long groupId, long parentFolderId, String name) throws NoSuchFolderException
      Removes the document library folder where groupId = ? and parentFolderId = ? and name = ? from the database.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      name - the name
      Returns:
      the document library folder that was removed
      Throws:
      NoSuchFolderException
    • countByG_P_N

      public static int countByG_P_N(long groupId, long parentFolderId, String name)
      Returns the number of document library folders where groupId = ? and parentFolderId = ? and name = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      name - the name
      Returns:
      the number of matching document library folders
    • findByGtF_C_P_NotS

      public static List<DLFolder> findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status)
      Returns all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      Returns:
      the matching document library folders
    • findByGtF_C_P_NotS

      public static List<DLFolder> findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end)
      Returns a range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByGtF_C_P_NotS

      public static List<DLFolder> findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByGtF_C_P_NotS

      public static List<DLFolder> findByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByGtF_C_P_NotS_First

      public static DLFolder findByGtF_C_P_NotS_First(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByGtF_C_P_NotS_First

      public static DLFolder fetchByGtF_C_P_NotS_First(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByGtF_C_P_NotS_Last

      public static DLFolder findByGtF_C_P_NotS_Last(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByGtF_C_P_NotS_Last

      public static DLFolder fetchByGtF_C_P_NotS_Last(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • removeByGtF_C_P_NotS

      public static void removeByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status)
      Removes all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ? from the database.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
    • countByGtF_C_P_NotS

      public static int countByGtF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status)
      Returns the number of document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?.
      Parameters:
      folderId - the folder ID
      companyId - the company ID
      parentFolderId - the parent folder ID
      status - the status
      Returns:
      the number of matching document library folders
    • findByG_M_P_H

      public static List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
      Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      Returns:
      the matching document library folders
    • findByG_M_P_H

      public static List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end)
      Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_M_P_H

      public static List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_M_P_H

      public static List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_M_P_H_First

      public static DLFolder findByG_M_P_H_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_P_H_First

      public static DLFolder fetchByG_M_P_H_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_P_H_Last

      public static DLFolder findByG_M_P_H_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_P_H_Last

      public static DLFolder fetchByG_M_P_H_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_P_H_PrevAndNext

      public static DLFolder[] findByG_M_P_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_M_P_H

      public static List<DLFolder> filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
      Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_M_P_H

      public static List<DLFolder> filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_M_P_H

      public static List<DLFolder> filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_M_P_H_PrevAndNext

      public static DLFolder[] filterFindByG_M_P_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_M_P_H

      public static void removeByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
      Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? from the database.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
    • countByG_M_P_H

      public static int countByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
      Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      Returns:
      the number of matching document library folders
    • filterCountByG_M_P_H

      public static int filterCountByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden)
      Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByG_M_LikeT_H

      public static List<DLFolder> findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
      Returns all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      Returns:
      the matching document library folders
    • findByG_M_LikeT_H

      public static List<DLFolder> findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end)
      Returns a range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_M_LikeT_H

      public static List<DLFolder> findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_M_LikeT_H

      public static List<DLFolder> findByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_M_LikeT_H_First

      public static DLFolder findByG_M_LikeT_H_First(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_LikeT_H_First

      public static DLFolder fetchByG_M_LikeT_H_First(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_LikeT_H_Last

      public static DLFolder findByG_M_LikeT_H_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_LikeT_H_Last

      public static DLFolder fetchByG_M_LikeT_H_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_LikeT_H_PrevAndNext

      public static DLFolder[] findByG_M_LikeT_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_M_LikeT_H

      public static List<DLFolder> filterFindByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
      Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_M_LikeT_H

      public static List<DLFolder> filterFindByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_M_LikeT_H

      public static List<DLFolder> filterFindByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_M_LikeT_H_PrevAndNext

      public static DLFolder[] filterFindByG_M_LikeT_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_M_LikeT_H

      public static void removeByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
      Removes all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? from the database.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
    • countByG_M_LikeT_H

      public static int countByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
      Returns the number of document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      Returns:
      the number of matching document library folders
    • filterCountByG_M_LikeT_H

      public static int filterCountByG_M_LikeT_H(long groupId, boolean mountPoint, String treePath, boolean hidden)
      Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByG_P_H_S

      public static List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
      Returns all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the matching document library folders
    • findByG_P_H_S

      public static List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end)
      Returns a range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_P_H_S

      public static List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_P_H_S

      public static List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_P_H_S_First

      public static DLFolder findByG_P_H_S_First(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_P_H_S_First

      public static DLFolder fetchByG_P_H_S_First(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_P_H_S_Last

      public static DLFolder findByG_P_H_S_Last(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_P_H_S_Last

      public static DLFolder fetchByG_P_H_S_Last(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_P_H_S_PrevAndNext

      public static DLFolder[] findByG_P_H_S_PrevAndNext(long folderId, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_P_H_S

      public static List<DLFolder> filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
      Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_P_H_S

      public static List<DLFolder> filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_P_H_S

      public static List<DLFolder> filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_P_H_S_PrevAndNext

      public static DLFolder[] filterFindByG_P_H_S_PrevAndNext(long folderId, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_P_H_S

      public static void removeByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
      Removes all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
    • countByG_P_H_S

      public static int countByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
      Returns the number of document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the number of matching document library folders
    • filterCountByG_P_H_S

      public static int filterCountByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status)
      Returns the number of document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByG_M_P_H_S

      public static List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
      Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the matching document library folders
    • findByG_M_P_H_S

      public static List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end)
      Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_M_P_H_S

      public static List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_M_P_H_S

      public static List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_M_P_H_S_First

      public static DLFolder findByG_M_P_H_S_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_P_H_S_First

      public static DLFolder fetchByG_M_P_H_S_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_P_H_S_Last

      public static DLFolder findByG_M_P_H_S_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_P_H_S_Last

      public static DLFolder fetchByG_M_P_H_S_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_P_H_S_PrevAndNext

      public static DLFolder[] findByG_M_P_H_S_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_M_P_H_S

      public static List<DLFolder> filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
      Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_M_P_H_S

      public static List<DLFolder> filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_M_P_H_S

      public static List<DLFolder> filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_M_P_H_S_PrevAndNext

      public static DLFolder[] filterFindByG_M_P_H_S_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_M_P_H_S

      public static void removeByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
      Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ? from the database.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
    • countByG_M_P_H_S

      public static int countByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
      Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the number of matching document library folders
    • filterCountByG_M_P_H_S

      public static int filterCountByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status)
      Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      parentFolderId - the parent folder ID
      hidden - the hidden
      status - the status
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByG_M_LikeT_H_NotS

      public static List<DLFolder> findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
      Returns all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      Returns:
      the matching document library folders
    • findByG_M_LikeT_H_NotS

      public static List<DLFolder> findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end)
      Returns a range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders
    • findByG_M_LikeT_H_NotS

      public static List<DLFolder> findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders
    • findByG_M_LikeT_H_NotS

      public static List<DLFolder> findByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of matching document library folders
    • findByG_M_LikeT_H_NotS_First

      public static DLFolder findByG_M_LikeT_H_NotS_First(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_LikeT_H_NotS_First

      public static DLFolder fetchByG_M_LikeT_H_NotS_First(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the first matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_LikeT_H_NotS_Last

      public static DLFolder findByG_M_LikeT_H_NotS_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByG_M_LikeT_H_NotS_Last

      public static DLFolder fetchByG_M_LikeT_H_NotS_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator)
      Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the last matching document library folder, or null if a matching document library folder could not be found
    • findByG_M_LikeT_H_NotS_PrevAndNext

      public static DLFolder[] findByG_M_LikeT_H_NotS_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • filterFindByG_M_LikeT_H_NotS

      public static List<DLFolder> filterFindByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
      Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      Returns:
      the matching document library folders that the user has permission to view
    • filterFindByG_M_LikeT_H_NotS

      public static List<DLFolder> filterFindByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end)
      Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of matching document library folders that the user has permission to view
    • filterFindByG_M_LikeT_H_NotS

      public static List<DLFolder> filterFindByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching document library folders that the user has permission to view
    • filterFindByG_M_LikeT_H_NotS_PrevAndNext

      public static DLFolder[] filterFindByG_M_LikeT_H_NotS_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException
      Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      folderId - the primary key of the current document library folder
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      orderByComparator - the comparator to order the set by (optionally null)
      Returns:
      the previous, current, and next document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • removeByG_M_LikeT_H_NotS

      public static void removeByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
      Removes all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ? from the database.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
    • countByG_M_LikeT_H_NotS

      public static int countByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
      Returns the number of document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      Returns:
      the number of matching document library folders
    • filterCountByG_M_LikeT_H_NotS

      public static int filterCountByG_M_LikeT_H_NotS(long groupId, boolean mountPoint, String treePath, boolean hidden, int status)
      Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? and status ≠ ?.
      Parameters:
      groupId - the group ID
      mountPoint - the mount point
      treePath - the tree path
      hidden - the hidden
      status - the status
      Returns:
      the number of matching document library folders that the user has permission to view
    • findByERC_G

      public static DLFolder findByERC_G(String externalReferenceCode, long groupId) throws NoSuchFolderException
      Returns the document library folder where externalReferenceCode = ? and groupId = ? or throws a NoSuchFolderException if it could not be found.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the matching document library folder
      Throws:
      NoSuchFolderException - if a matching document library folder could not be found
      NoSuchFolderException
    • fetchByERC_G

      public static DLFolder fetchByERC_G(String externalReferenceCode, long groupId)
      Returns the document library folder where externalReferenceCode = ? and groupId = ? or returns null if it could not be found. Uses the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • fetchByERC_G

      public static DLFolder fetchByERC_G(String externalReferenceCode, long groupId, boolean useFinderCache)
      Returns the document library folder where externalReferenceCode = ? and groupId = ? or returns null if it could not be found, optionally using the finder cache.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      useFinderCache - whether to use the finder cache
      Returns:
      the matching document library folder, or null if a matching document library folder could not be found
    • removeByERC_G

      public static DLFolder removeByERC_G(String externalReferenceCode, long groupId) throws NoSuchFolderException
      Removes the document library folder where externalReferenceCode = ? and groupId = ? from the database.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the document library folder that was removed
      Throws:
      NoSuchFolderException
    • countByERC_G

      public static int countByERC_G(String externalReferenceCode, long groupId)
      Returns the number of document library folders where externalReferenceCode = ? and groupId = ?.
      Parameters:
      externalReferenceCode - the external reference code
      groupId - the group ID
      Returns:
      the number of matching document library folders
    • cacheResult

      public static void cacheResult(DLFolder dlFolder)
      Caches the document library folder in the entity cache if it is enabled.
      Parameters:
      dlFolder - the document library folder
    • cacheResult

      public static void cacheResult(List<DLFolder> dlFolders)
      Caches the document library folders in the entity cache if it is enabled.
      Parameters:
      dlFolders - the document library folders
    • create

      public static DLFolder create(long folderId)
      Creates a new document library folder with the primary key. Does not add the document library folder to the database.
      Parameters:
      folderId - the primary key for the new document library folder
      Returns:
      the new document library folder
    • remove

      public static DLFolder remove(long folderId) throws NoSuchFolderException
      Removes the document library folder with the primary key from the database. Also notifies the appropriate model listeners.
      Parameters:
      folderId - the primary key of the document library folder
      Returns:
      the document library folder that was removed
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • updateImpl

      public static DLFolder updateImpl(DLFolder dlFolder)
    • findByPrimaryKey

      public static DLFolder findByPrimaryKey(long folderId) throws NoSuchFolderException
      Returns the document library folder with the primary key or throws a NoSuchFolderException if it could not be found.
      Parameters:
      folderId - the primary key of the document library folder
      Returns:
      the document library folder
      Throws:
      NoSuchFolderException - if a document library folder with the primary key could not be found
      NoSuchFolderException
    • fetchByPrimaryKey

      public static DLFolder fetchByPrimaryKey(long folderId)
      Returns the document library folder with the primary key or returns null if it could not be found.
      Parameters:
      folderId - the primary key of the document library folder
      Returns:
      the document library folder, or null if a document library folder with the primary key could not be found
    • findAll

      public static List<DLFolder> findAll()
      Returns all the document library folders.
      Returns:
      the document library folders
    • findAll

      public static List<DLFolder> findAll(int start, int end)
      Returns a range of all the document library folders.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of document library folders
    • findAll

      public static List<DLFolder> findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator)
      Returns an ordered range of all the document library folders.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of document library folders
    • findAll

      public static List<DLFolder> findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
      Returns an ordered range of all the document library folders.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      useFinderCache - whether to use the finder cache
      Returns:
      the ordered range of document library folders
    • removeAll

      public static void removeAll()
      Removes all the document library folders from the database.
    • countAll

      public static int countAll()
      Returns the number of document library folders.
      Returns:
      the number of document library folders
    • getDLFileEntryTypePrimaryKeys

      public static long[] getDLFileEntryTypePrimaryKeys(long pk)
      Returns the primaryKeys of document library file entry types associated with the document library folder.
      Parameters:
      pk - the primary key of the document library folder
      Returns:
      long[] of the primaryKeys of document library file entry types associated with the document library folder
    • getDLFileEntryTypes

      public static List<DLFileEntryType> getDLFileEntryTypes(long pk)
      Returns all the document library file entry types associated with the document library folder.
      Parameters:
      pk - the primary key of the document library folder
      Returns:
      the document library file entry types associated with the document library folder
    • getDLFileEntryTypes

      public static List<DLFileEntryType> getDLFileEntryTypes(long pk, int start, int end)
      Returns a range of all the document library file entry types associated with the document library folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      pk - the primary key of the document library folder
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      Returns:
      the range of document library file entry types associated with the document library folder
    • getDLFileEntryTypes

      public static List<DLFileEntryType> getDLFileEntryTypes(long pk, int start, int end, OrderByComparator<DLFileEntryType> orderByComparator)
      Returns an ordered range of all the document library file entry types associated with the document library folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from DLFolderModelImpl.

      Parameters:
      pk - the primary key of the document library folder
      start - the lower bound of the range of document library folders
      end - the upper bound of the range of document library folders (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of document library file entry types associated with the document library folder
    • getDLFileEntryTypesSize

      public static int getDLFileEntryTypesSize(long pk)
      Returns the number of document library file entry types associated with the document library folder.
      Parameters:
      pk - the primary key of the document library folder
      Returns:
      the number of document library file entry types associated with the document library folder
    • containsDLFileEntryType

      public static boolean containsDLFileEntryType(long pk, long dlFileEntryTypePK)
      Returns true if the document library file entry type is associated with the document library folder.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypePK - the primary key of the document library file entry type
      Returns:
      true if the document library file entry type is associated with the document library folder; false otherwise
    • containsDLFileEntryTypes

      public static boolean containsDLFileEntryTypes(long pk)
      Returns true if the document library folder has any document library file entry types associated with it.
      Parameters:
      pk - the primary key of the document library folder to check for associations with document library file entry types
      Returns:
      true if the document library folder has any document library file entry types associated with it; false otherwise
    • addDLFileEntryType

      public static boolean addDLFileEntryType(long pk, long dlFileEntryTypePK)
      Adds an association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypePK - the primary key of the document library file entry type
      Returns:
      true if an association between the document library folder and the document library file entry type was added; false if they were already associated
    • addDLFileEntryType

      public static boolean addDLFileEntryType(long pk, DLFileEntryType dlFileEntryType)
      Adds an association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryType - the document library file entry type
      Returns:
      true if an association between the document library folder and the document library file entry type was added; false if they were already associated
    • addDLFileEntryTypes

      public static boolean addDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
      Adds an association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypePKs - the primary keys of the document library file entry types
      Returns:
      true if at least one association between the document library folder and the document library file entry types was added; false if they were all already associated
    • addDLFileEntryTypes

      public static boolean addDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
      Adds an association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypes - the document library file entry types
      Returns:
      true if at least one association between the document library folder and the document library file entry types was added; false if they were all already associated
    • clearDLFileEntryTypes

      public static void clearDLFileEntryTypes(long pk)
      Clears all associations between the document library folder and its document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder to clear the associated document library file entry types from
    • removeDLFileEntryType

      public static void removeDLFileEntryType(long pk, long dlFileEntryTypePK)
      Removes the association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypePK - the primary key of the document library file entry type
    • removeDLFileEntryType

      public static void removeDLFileEntryType(long pk, DLFileEntryType dlFileEntryType)
      Removes the association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryType - the document library file entry type
    • removeDLFileEntryTypes

      public static void removeDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
      Removes the association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypePKs - the primary keys of the document library file entry types
    • removeDLFileEntryTypes

      public static void removeDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
      Removes the association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypes - the document library file entry types
    • setDLFileEntryTypes

      public static void setDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
      Sets the document library file entry types associated with the document library folder, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypePKs - the primary keys of the document library file entry types to be associated with the document library folder
    • setDLFileEntryTypes

      public static void setDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
      Sets the document library file entry types associated with the document library folder, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache.
      Parameters:
      pk - the primary key of the document library folder
      dlFileEntryTypes - the document library file entry types to be associated with the document library folder
    • getPersistence

      public static DLFolderPersistence getPersistence()
    • setPersistence

      public static void setPersistence(DLFolderPersistence persistence)