Interface DLFolderPersistence

All Superinterfaces:
BasePersistence<DLFolder>, CTPersistence<DLFolder>

@ProviderType public interface DLFolderPersistence extends BasePersistence<DLFolder>, CTPersistence<DLFolder>
The persistence interface for the document library folder service.

Caching information and settings can be found in portal.properties

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

    Modifier and Type
    Method
    Description
    boolean
    addDLFileEntryType(long pk, long dlFileEntryTypePK)
    Adds an association between the document library folder and the document library file entry type.
    boolean
    addDLFileEntryType(long pk, DLFileEntryType dlFileEntryType)
    Adds an association between the document library folder and the document library file entry type.
    boolean
    addDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
    Adds an association between the document library folder and the document library file entry types.
    boolean
    addDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
    Adds an association between the document library folder and the document library file entry types.
    void
    Caches the document library folder in the entity cache if it is enabled.
    void
    Caches the document library folders in the entity cache if it is enabled.
    void
    Clears all associations between the document library folder and its document library file entry types.
    boolean
    containsDLFileEntryType(long pk, long dlFileEntryTypePK)
    Returns true if the document library file entry type is associated with the document library folder.
    boolean
    Returns true if the document library folder has any document library file entry types associated with it.
    int
    Returns the number of document library folders.
    int
    countByC_NotS(long companyId, int status)
    Returns the number of document library folders where companyId = ? and status ≠ ?.
    int
    countByCompanyId(long companyId)
    Returns the number of document library folders where companyId = ?.
    int
    countByERC_G(String externalReferenceCode, long groupId)
    Returns the number of document library folders where externalReferenceCode = ? and groupId = ?.
    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 = ?.
    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 ≠ ?.
    int
    countByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    int
    countByG_P(long groupId, long parentFolderId)
    Returns the number of document library folders where groupId = ? and parentFolderId = ?.
    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 = ?.
    int
    countByG_P_N(long groupId, long parentFolderId, String name)
    Returns the number of document library folders where groupId = ? and parentFolderId = ? and name = ?.
    int
    countByGroupId(long groupId)
    Returns the number of document library folders where groupId = ?.
    int
    countByGtF_C_P(long folderId, long companyId, long parentFolderId)
    Returns the number of document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    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 ≠ ?.
    int
    countByP_N(long parentFolderId, String name)
    Returns the number of document library folders where parentFolderId = ? and name = ?.
    int
    countByR_M(long repositoryId, boolean mountPoint)
    Returns the number of document library folders where repositoryId = ? and mountPoint = ?.
    int
    countByR_P(long repositoryId, long parentFolderId)
    Returns the number of document library folders where repositoryId = ? and parentFolderId = ?.
    int
    countByRepositoryId(long repositoryId)
    Returns the number of document library folders where repositoryId = ?.
    int
    Returns the number of document library folders where uuid = ?.
    int
    countByUuid_C(String uuid, long companyId)
    Returns the number of document library folders where uuid = ? and companyId = ?.
    int
    countByUUID_G(String uuid, long groupId)
    Returns the number of document library folders where uuid = ? and groupId = ?.
    create(long folderId)
    Creates a new document library folder with the primary key.
    fetchByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?.
    fetchByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?.
    fetchByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ?.
    fetchByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ?.
    fetchByERC_G(String externalReferenceCode, long groupId)
    Returns the document library folder where externalReferenceCode = ? and groupId = ? or returns null if it could not be found.
    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.
    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 = ?.
    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 = ?.
    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 ≠ ?.
    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 ≠ ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    fetchByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    fetchByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    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.
    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.
    fetchByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ?.
    fetchByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ?.
    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 = ?.
    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 = ?.
    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 ≠ ?.
    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 ≠ ?.
    fetchByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?.
    fetchByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?.
    fetchByPrimaryKey(long folderId)
    Returns the document library folder with the primary key or returns null if it could not be found.
    fetchByR_M(long repositoryId, boolean mountPoint)
    Returns the document library folder where repositoryId = ? and mountPoint = ? or returns null if it could not be found.
    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.
    fetchByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    fetchByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    fetchByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ?.
    fetchByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ?.
    fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where uuid = ? and companyId = ?.
    fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where uuid = ? and companyId = ?.
    Returns the first document library folder in the ordered set where uuid = ?.
    fetchByUUID_G(String uuid, long groupId)
    Returns the document library folder where uuid = ? and groupId = ? or returns null if it could not be found.
    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.
    Returns the last document library folder in the ordered set where uuid = ?.
    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 = ?.
    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 ≠ ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    int
    filterCountByGroupId(long groupId)
    Returns the number of document library folders that the user has permission to view where groupId = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    filterFindByG_P(long groupId, long parentFolderId)
    Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    filterFindByGroupId(long groupId)
    Returns all the document library folders that the user has permission to view where groupId = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    Returns all the document library folders.
    findAll(int start, int end)
    Returns a range of all the document library folders.
    findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders.
    findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders.
    findByC_NotS(long companyId, int status)
    Returns all the document library folders where companyId = ? and status ≠ ?.
    findByC_NotS(long companyId, int status, int start, int end)
    Returns a range of all the document library folders where companyId = ? and status ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    findByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?.
    findByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?.
    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 ≠ ?.
    findByCompanyId(long companyId)
    Returns all the document library folders where companyId = ?.
    findByCompanyId(long companyId, int start, int end)
    Returns a range of all the document library folders where companyId = ?.
    findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where companyId = ?.
    findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where companyId = ?.
    findByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where companyId = ?.
    findByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where companyId = ?.
    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 = ?.
    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.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 = ?.
    findByG_M_P(long groupId, boolean mountPoint, long parentFolderId)
    Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    findByG_P(long groupId, long parentFolderId)
    Returns all the document library folders where groupId = ? and parentFolderId = ?.
    findByG_P(long groupId, long parentFolderId, int start, int end)
    Returns a range of all the document library folders where groupId = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    findByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    findByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?.
    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.
    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 = ?.
    findByGroupId(long groupId)
    Returns all the document library folders where groupId = ?.
    findByGroupId(long groupId, int start, int end)
    Returns a range of all the document library folders where groupId = ?.
    findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where groupId = ?.
    findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where groupId = ?.
    findByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where groupId = ?.
    findByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where groupId = ?.
    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 = ?.
    findByGtF_C_P(long folderId, long companyId, long parentFolderId)
    Returns all the document library folders where folderId > ? and companyId = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 = ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    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 ≠ ?.
    findByP_N(long parentFolderId, String name)
    Returns all the document library folders where parentFolderId = ? and name = ?.
    findByP_N(long parentFolderId, String name, int start, int end)
    Returns a range of all the document library folders where parentFolderId = ? and name = ?.
    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 = ?.
    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 = ?.
    findByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?.
    findByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?.
    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 = ?.
    findByPrimaryKey(long folderId)
    Returns the document library folder with the primary key or throws a NoSuchFolderException if it could not be found.
    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.
    findByR_P(long repositoryId, long parentFolderId)
    Returns all the document library folders where repositoryId = ? and parentFolderId = ?.
    findByR_P(long repositoryId, long parentFolderId, int start, int end)
    Returns a range of all the document library folders where repositoryId = ? and parentFolderId = ?.
    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 = ?.
    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 = ?.
    findByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    findByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?.
    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 = ?.
    findByRepositoryId(long repositoryId)
    Returns all the document library folders where repositoryId = ?.
    findByRepositoryId(long repositoryId, int start, int end)
    Returns a range of all the document library folders where repositoryId = ?.
    findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where repositoryId = ?.
    findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where repositoryId = ?.
    findByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where repositoryId = ?.
    findByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where repositoryId = ?.
    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 = ?.
    Returns all the document library folders where uuid = ?.
    findByUuid(String uuid, int start, int end)
    Returns a range of all the document library folders where uuid = ?.
    findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator)
    Returns an ordered range of all the document library folders where uuid = ?.
    findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean useFinderCache)
    Returns an ordered range of all the document library folders where uuid = ?.
    findByUuid_C(String uuid, long companyId)
    Returns all the document library folders where uuid = ? and companyId = ?.
    findByUuid_C(String uuid, long companyId, int start, int end)
    Returns a range of all the document library folders where uuid = ? and companyId = ?.
    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 = ?.
    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 = ?.
    findByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the first document library folder in the ordered set where uuid = ? and companyId = ?.
    findByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where uuid = ? and companyId = ?.
    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 = ?.
    Returns the first document library folder in the ordered set where uuid = ?.
    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.
    findByUuid_Last(String uuid, OrderByComparator<DLFolder> orderByComparator)
    Returns the last document library folder in the ordered set where uuid = ?.
    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 = ?.
    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.
    int
    Returns the number of document library file entry types associated with the document library folder.
    remove(long folderId)
    Removes the document library folder with the primary key from the database.
    void
    Removes all the document library folders from the database.
    void
    removeByC_NotS(long companyId, int status)
    Removes all the document library folders where companyId = ? and status ≠ ? from the database.
    void
    removeByCompanyId(long companyId)
    Removes all the document library folders where companyId = ? from the database.
    removeByERC_G(String externalReferenceCode, long groupId)
    Removes the document library folder where externalReferenceCode = ? and groupId = ? from the database.
    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.
    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.
    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.
    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.
    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.
    void
    removeByG_P(long groupId, long parentFolderId)
    Removes all the document library folders where groupId = ? and parentFolderId = ? from the database.
    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.
    removeByG_P_N(long groupId, long parentFolderId, String name)
    Removes the document library folder where groupId = ? and parentFolderId = ? and name = ? from the database.
    void
    removeByGroupId(long groupId)
    Removes all the document library folders where groupId = ? from the database.
    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.
    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.
    void
    removeByP_N(long parentFolderId, String name)
    Removes all the document library folders where parentFolderId = ? and name = ? from the database.
    removeByR_M(long repositoryId, boolean mountPoint)
    Removes the document library folder where repositoryId = ? and mountPoint = ? from the database.
    void
    removeByR_P(long repositoryId, long parentFolderId)
    Removes all the document library folders where repositoryId = ? and parentFolderId = ? from the database.
    void
    removeByRepositoryId(long repositoryId)
    Removes all the document library folders where repositoryId = ? from the database.
    void
    Removes all the document library folders where uuid = ? from the database.
    void
    removeByUuid_C(String uuid, long companyId)
    Removes all the document library folders where uuid = ? and companyId = ? from the database.
    removeByUUID_G(String uuid, long groupId)
    Removes the document library folder where uuid = ? and groupId = ? from the database.
    void
    removeDLFileEntryType(long pk, long dlFileEntryTypePK)
    Removes the association between the document library folder and the document library file entry type.
    void
    removeDLFileEntryType(long pk, DLFileEntryType dlFileEntryType)
    Removes the association between the document library folder and the document library file entry type.
    void
    removeDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs)
    Removes the association between the document library folder and the document library file entry types.
    void
    removeDLFileEntryTypes(long pk, List<DLFileEntryType> dlFileEntryTypes)
    Removes the association between the document library folder and the document library file entry types.
    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.
    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.
    updateImpl(DLFolder dlFolder)
     

    Methods inherited from interface com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence

    getCTColumnNames, getMappingTableNames, getTableColumnsMap, getTableName, getUniqueIndexColumnNames
  • Method Details

    • findByUuid

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

      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

      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

      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

      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
    • fetchByUuid_First

      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

      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
    • fetchByUuid_Last

      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

      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
    • removeByUuid

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

      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

      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
    • fetchByUUID_G

      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

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByUuid_C_First

      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

      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
    • fetchByUuid_C_Last

      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

      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
    • removeByUuid_C

      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

      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

      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

      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

      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

      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

      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
    • fetchByGroupId_First

      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

      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
    • fetchByGroupId_Last

      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

      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
    • filterFindByGroupId

      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

      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

      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

      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
    • removeByGroupId

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

      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

      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

      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

      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

      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

      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

      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
    • fetchByCompanyId_First

      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

      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
    • fetchByCompanyId_Last

      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

      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
    • removeByCompanyId

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

      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

      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

      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

      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

      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

      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
    • fetchByRepositoryId_First

      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

      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
    • fetchByRepositoryId_Last

      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

      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
    • removeByRepositoryId

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

      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

      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

      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

      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

      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

      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
    • fetchByG_P_First

      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

      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
    • fetchByG_P_Last

      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

      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
    • filterFindByG_P

      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

      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

      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

      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
    • removeByG_P

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByC_NotS_First

      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

      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
    • fetchByC_NotS_Last

      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

      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
    • removeByC_NotS

      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

      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

      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
    • fetchByR_M

      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

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByR_P_First

      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

      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
    • fetchByR_P_Last

      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

      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
    • removeByR_P

      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

      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

      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

      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

      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

      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

      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
    • fetchByP_N_First

      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

      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
    • fetchByP_N_Last

      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

      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
    • removeByP_N

      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

      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

      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

      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

      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

      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

      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
    • fetchByGtF_C_P_First

      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

      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
    • fetchByGtF_C_P_Last

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByG_M_P_First

      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

      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
    • fetchByG_M_P_Last

      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

      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
    • filterFindByG_M_P

      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

      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

      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

      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
    • removeByG_M_P

      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

      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

      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

      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
    • fetchByG_P_N

      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

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByGtF_C_P_NotS_First

      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

      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
    • fetchByGtF_C_P_NotS_Last

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByG_M_P_H_First

      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

      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
    • fetchByG_M_P_H_Last

      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

      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
    • filterFindByG_M_P_H

      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

      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

      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

      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
    • removeByG_M_P_H

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByG_M_LikeT_H_First

      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

      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
    • fetchByG_M_LikeT_H_Last

      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

      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
    • filterFindByG_M_LikeT_H

      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

      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

      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

      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
    • removeByG_M_LikeT_H

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByG_P_H_S_First

      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

      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
    • fetchByG_P_H_S_Last

      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

      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
    • filterFindByG_P_H_S

      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

      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

      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

      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
    • removeByG_P_H_S

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByG_M_P_H_S_First

      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

      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
    • fetchByG_M_P_H_S_Last

      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

      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
    • filterFindByG_M_P_H_S

      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

      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

      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

      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
    • removeByG_M_P_H_S

      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

      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

      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

      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

      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

      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

      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

      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
    • fetchByG_M_LikeT_H_NotS_First

      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

      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
    • fetchByG_M_LikeT_H_NotS_Last

      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

      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
    • filterFindByG_M_LikeT_H_NotS

      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

      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

      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

      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
    • removeByG_M_LikeT_H_NotS

      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

      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

      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

      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
    • fetchByERC_G

      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

      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

      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

      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

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

      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

      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

      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
    • updateImpl

      DLFolder updateImpl(DLFolder dlFolder)
    • findByPrimaryKey

      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
    • fetchByPrimaryKey

      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

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

      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

      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

      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

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

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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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

      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