/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.knowledge.base.service.persistence; import aQute.bnd.annotation.ProviderType; import com.liferay.knowledge.base.exception.NoSuchFolderException; import com.liferay.knowledge.base.model.KBFolder; import com.liferay.portal.kernel.service.persistence.BasePersistence; /** * The persistence interface for the kb folder service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author Brian Wing Shun Chan * @see com.liferay.knowledge.base.service.persistence.impl.KBFolderPersistenceImpl * @see KBFolderUtil * @generated */ @ProviderType public interface KBFolderPersistence extends BasePersistence<KBFolder> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link KBFolderUtil} to access the kb folder persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface. */ /** * Returns all the kb folders where uuid = ?. * * @param uuid the uuid * @return the matching kb folders */ public java.util.List<KBFolder> findByUuid(java.lang.String uuid); /** * Returns a range of all the kb folders where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @return the range of matching kb folders */ public java.util.List<KBFolder> findByUuid(java.lang.String uuid, int start, int end); /** * Returns an ordered range of all the kb folders where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching kb folders */ public java.util.List<KBFolder> findByUuid(java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns an ordered range of all the kb folders where uuid = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching kb folders */ public java.util.List<KBFolder> findByUuid(java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator, boolean retrieveFromCache); /** * Returns the first kb folder in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByUuid_First(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns the first kb folder in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByUuid_First(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the last kb folder in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByUuid_Last(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns the last kb folder in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByUuid_Last(java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the kb folders before and after the current kb folder in the ordered set where uuid = ?. * * @param kbFolderId the primary key of the current kb folder * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next kb folder * @throws NoSuchFolderException if a kb folder with the primary key could not be found */ public KBFolder[] findByUuid_PrevAndNext(long kbFolderId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Removes all the kb folders where uuid = ? from the database. * * @param uuid the uuid */ public void removeByUuid(java.lang.String uuid); /** * Returns the number of kb folders where uuid = ?. * * @param uuid the uuid * @return the number of matching kb folders */ public int countByUuid(java.lang.String uuid); /** * Returns the kb folder where uuid = ? and groupId = ? or throws a {@link NoSuchFolderException} if it could not be found. * * @param uuid the uuid * @param groupId the group ID * @return the matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByUUID_G(java.lang.String uuid, long groupId) throws NoSuchFolderException; /** * Returns the kb folder where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param uuid the uuid * @param groupId the group ID * @return the matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByUUID_G(java.lang.String uuid, long groupId); /** * Returns the kb folder where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param uuid the uuid * @param groupId the group ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByUUID_G(java.lang.String uuid, long groupId, boolean retrieveFromCache); /** * Removes the kb folder where uuid = ? and groupId = ? from the database. * * @param uuid the uuid * @param groupId the group ID * @return the kb folder that was removed */ public KBFolder removeByUUID_G(java.lang.String uuid, long groupId) throws NoSuchFolderException; /** * Returns the number of kb folders where uuid = ? and groupId = ?. * * @param uuid the uuid * @param groupId the group ID * @return the number of matching kb folders */ public int countByUUID_G(java.lang.String uuid, long groupId); /** * Returns all the kb folders where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching kb folders */ public java.util.List<KBFolder> findByUuid_C(java.lang.String uuid, long companyId); /** * Returns a range of all the kb folders where uuid = ? and companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @return the range of matching kb folders */ public java.util.List<KBFolder> findByUuid_C(java.lang.String uuid, long companyId, int start, int end); /** * Returns an ordered range of all the kb folders where uuid = ? and companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching kb folders */ public java.util.List<KBFolder> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns an ordered range of all the kb folders where uuid = ? and companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching kb folders */ public java.util.List<KBFolder> findByUuid_C(java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator, boolean retrieveFromCache); /** * Returns the first kb folder in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByUuid_C_First(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns the first kb folder in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByUuid_C_First(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the last kb folder in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByUuid_C_Last(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns the last kb folder in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByUuid_C_Last(java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the kb folders before and after the current kb folder in the ordered set where uuid = ? and companyId = ?. * * @param kbFolderId the primary key of the current kb folder * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next kb folder * @throws NoSuchFolderException if a kb folder with the primary key could not be found */ public KBFolder[] findByUuid_C_PrevAndNext(long kbFolderId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Removes all the kb folders where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID */ public void removeByUuid_C(java.lang.String uuid, long companyId); /** * Returns the number of kb folders where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching kb folders */ public int countByUuid_C(java.lang.String uuid, long companyId); /** * Returns all the kb folders where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @return the matching kb folders */ public java.util.List<KBFolder> findByG_P(long groupId, long parentKBFolderId); /** * Returns a range of all the kb folders where groupId = ? and parentKBFolderId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @return the range of matching kb folders */ public java.util.List<KBFolder> findByG_P(long groupId, long parentKBFolderId, int start, int end); /** * Returns an ordered range of all the kb folders where groupId = ? and parentKBFolderId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching kb folders */ public java.util.List<KBFolder> findByG_P(long groupId, long parentKBFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns an ordered range of all the kb folders where groupId = ? and parentKBFolderId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching kb folders */ public java.util.List<KBFolder> findByG_P(long groupId, long parentKBFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator, boolean retrieveFromCache); /** * Returns the first kb folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByG_P_First(long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns the first kb folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByG_P_First(long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the last kb folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByG_P_Last(long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns the last kb folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByG_P_Last(long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the kb folders before and after the current kb folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param kbFolderId the primary key of the current kb folder * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next kb folder * @throws NoSuchFolderException if a kb folder with the primary key could not be found */ public KBFolder[] findByG_P_PrevAndNext(long kbFolderId, long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Returns all the kb folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @return the matching kb folders that the user has permission to view */ public java.util.List<KBFolder> filterFindByG_P(long groupId, long parentKBFolderId); /** * Returns a range of all the kb folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @return the range of matching kb folders that the user has permission to view */ public java.util.List<KBFolder> filterFindByG_P(long groupId, long parentKBFolderId, int start, int end); /** * Returns an ordered range of all the kb folders that the user has permissions to view where groupId = ? and parentKBFolderId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching kb folders that the user has permission to view */ public java.util.List<KBFolder> filterFindByG_P(long groupId, long parentKBFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns the kb folders before and after the current kb folder in the ordered set of kb folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * @param kbFolderId the primary key of the current kb folder * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next kb folder * @throws NoSuchFolderException if a kb folder with the primary key could not be found */ public KBFolder[] filterFindByG_P_PrevAndNext(long kbFolderId, long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator) throws NoSuchFolderException; /** * Removes all the kb folders where groupId = ? and parentKBFolderId = ? from the database. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID */ public void removeByG_P(long groupId, long parentKBFolderId); /** * Returns the number of kb folders where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @return the number of matching kb folders */ public int countByG_P(long groupId, long parentKBFolderId); /** * Returns the number of kb folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @return the number of matching kb folders that the user has permission to view */ public int filterCountByG_P(long groupId, long parentKBFolderId); /** * Returns the kb folder where groupId = ? and parentKBFolderId = ? and name = ? or throws a {@link NoSuchFolderException} if it could not be found. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param name the name * @return the matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByG_P_N(long groupId, long parentKBFolderId, java.lang.String name) throws NoSuchFolderException; /** * Returns the kb folder where groupId = ? and parentKBFolderId = ? and name = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param name the name * @return the matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByG_P_N(long groupId, long parentKBFolderId, java.lang.String name); /** * Returns the kb folder where groupId = ? and parentKBFolderId = ? and name = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param name the name * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByG_P_N(long groupId, long parentKBFolderId, java.lang.String name, boolean retrieveFromCache); /** * Removes the kb folder where groupId = ? and parentKBFolderId = ? and name = ? from the database. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param name the name * @return the kb folder that was removed */ public KBFolder removeByG_P_N(long groupId, long parentKBFolderId, java.lang.String name) throws NoSuchFolderException; /** * Returns the number of kb folders where groupId = ? and parentKBFolderId = ? and name = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param name the name * @return the number of matching kb folders */ public int countByG_P_N(long groupId, long parentKBFolderId, java.lang.String name); /** * Returns the kb folder where groupId = ? and parentKBFolderId = ? and urlTitle = ? or throws a {@link NoSuchFolderException} if it could not be found. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param urlTitle the url title * @return the matching kb folder * @throws NoSuchFolderException if a matching kb folder could not be found */ public KBFolder findByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle) throws NoSuchFolderException; /** * Returns the kb folder where groupId = ? and parentKBFolderId = ? and urlTitle = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param urlTitle the url title * @return the matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle); /** * Returns the kb folder where groupId = ? and parentKBFolderId = ? and urlTitle = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param urlTitle the url title * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching kb folder, or <code>null</code> if a matching kb folder could not be found */ public KBFolder fetchByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle, boolean retrieveFromCache); /** * Removes the kb folder where groupId = ? and parentKBFolderId = ? and urlTitle = ? from the database. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param urlTitle the url title * @return the kb folder that was removed */ public KBFolder removeByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle) throws NoSuchFolderException; /** * Returns the number of kb folders where groupId = ? and parentKBFolderId = ? and urlTitle = ?. * * @param groupId the group ID * @param parentKBFolderId the parent kb folder ID * @param urlTitle the url title * @return the number of matching kb folders */ public int countByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle); /** * Caches the kb folder in the entity cache if it is enabled. * * @param kbFolder the kb folder */ public void cacheResult(KBFolder kbFolder); /** * Caches the kb folders in the entity cache if it is enabled. * * @param kbFolders the kb folders */ public void cacheResult(java.util.List<KBFolder> kbFolders); /** * Creates a new kb folder with the primary key. Does not add the kb folder to the database. * * @param kbFolderId the primary key for the new kb folder * @return the new kb folder */ public KBFolder create(long kbFolderId); /** * Removes the kb folder with the primary key from the database. Also notifies the appropriate model listeners. * * @param kbFolderId the primary key of the kb folder * @return the kb folder that was removed * @throws NoSuchFolderException if a kb folder with the primary key could not be found */ public KBFolder remove(long kbFolderId) throws NoSuchFolderException; public KBFolder updateImpl(KBFolder kbFolder); /** * Returns the kb folder with the primary key or throws a {@link NoSuchFolderException} if it could not be found. * * @param kbFolderId the primary key of the kb folder * @return the kb folder * @throws NoSuchFolderException if a kb folder with the primary key could not be found */ public KBFolder findByPrimaryKey(long kbFolderId) throws NoSuchFolderException; /** * Returns the kb folder with the primary key or returns <code>null</code> if it could not be found. * * @param kbFolderId the primary key of the kb folder * @return the kb folder, or <code>null</code> if a kb folder with the primary key could not be found */ public KBFolder fetchByPrimaryKey(long kbFolderId); @Override public java.util.Map<java.io.Serializable, KBFolder> fetchByPrimaryKeys( java.util.Set<java.io.Serializable> primaryKeys); /** * Returns all the kb folders. * * @return the kb folders */ public java.util.List<KBFolder> findAll(); /** * Returns a range of all the kb folders. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @return the range of kb folders */ public java.util.List<KBFolder> findAll(int start, int end); /** * Returns an ordered range of all the kb folders. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of kb folders */ public java.util.List<KBFolder> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator); /** * Returns an ordered range of all the kb folders. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link KBFolderModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of kb folders * @param end the upper bound of the range of kb folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of kb folders */ public java.util.List<KBFolder> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<KBFolder> orderByComparator, boolean retrieveFromCache); /** * Removes all the kb folders from the database. */ public void removeAll(); /** * Returns the number of kb folders. * * @return the number of kb folders */ public int countAll(); @Override public java.util.Set<java.lang.String> getBadColumnNames(); }