/** * 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.knowledgebase.service.persistence; import com.liferay.knowledgebase.model.KBFolder; import com.liferay.portal.service.persistence.BasePersistence; /** * The persistence interface for the k b folder service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author Brian Wing Shun Chan * @see KBFolderPersistenceImpl * @see KBFolderUtil * @generated */ public interface KBFolderPersistence extends BasePersistence<KBFolder> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link KBFolderUtil} to access the k b folder persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface. */ /** * Returns all the k b folders where uuid = ?. * * @param uuid the uuid * @return the matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByUuid( java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns a range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @return the range of matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByUuid( java.lang.String uuid, int start, int end) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns an ordered range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByUuid( java.lang.String uuid, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the first k b 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 k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByUuid_First( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the first k b 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 k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByUuid_First( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the last k b 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 k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByUuid_Last( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the last k b 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 k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByUuid_Last( java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folders before and after the current k b folder in the ordered set where uuid = ?. * * @param kbFolderId the primary key of the current k b folder * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder[] findByUuid_PrevAndNext( long kbFolderId, java.lang.String uuid, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Removes all the k b folders where uuid = ? from the database. * * @param uuid the uuid * @throws SystemException if a system exception occurred */ public void removeByUuid(java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders where uuid = ?. * * @param uuid the uuid * @return the number of matching k b folders * @throws SystemException if a system exception occurred */ public int countByUuid(java.lang.String uuid) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folder where uuid = ? and groupId = ? or throws a {@link com.liferay.knowledgebase.NoSuchFolderException} if it could not be found. * * @param uuid the uuid * @param groupId the group ID * @return the matching k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByUUID_G( java.lang.String uuid, long groupId) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b 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 k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByUUID_G( java.lang.String uuid, long groupId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b 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 use the finder cache * @return the matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByUUID_G( java.lang.String uuid, long groupId, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException; /** * Removes the k b folder where uuid = ? and groupId = ? from the database. * * @param uuid the uuid * @param groupId the group ID * @return the k b folder that was removed * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder removeByUUID_G( java.lang.String uuid, long groupId) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders where uuid = ? and groupId = ?. * * @param uuid the uuid * @param groupId the group ID * @return the number of matching k b folders * @throws SystemException if a system exception occurred */ public int countByUUID_G(java.lang.String uuid, long groupId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns all the k b folders where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByUuid_C( java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns a range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @return the range of matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByUuid_C( java.lang.String uuid, long companyId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns an ordered range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByUuid_C( java.lang.String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the first k b 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 k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByUuid_C_First( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the first k b 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 k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByUuid_C_First( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the last k b 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 k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByUuid_C_Last( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the last k b 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 k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByUuid_C_Last( java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folders before and after the current k b folder in the ordered set where uuid = ? and companyId = ?. * * @param kbFolderId the primary key of the current k b 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 k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder[] findByUuid_C_PrevAndNext( long kbFolderId, java.lang.String uuid, long companyId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Removes all the k b folders where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID * @throws SystemException if a system exception occurred */ public void removeByUuid_C(java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching k b folders * @throws SystemException if a system exception occurred */ public int countByUuid_C(java.lang.String uuid, long companyId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns all the k b folders where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @return the matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByG_P( long groupId, long parentKBFolderId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns a range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folder ID * @param start the lower bound of the range of k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @return the range of matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByG_P( long groupId, long parentKBFolderId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns an ordered range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folder ID * @param start the lower bound of the range of k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findByG_P( long groupId, long parentKBFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the first k b folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByG_P_First( long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the first k b folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByG_P_First( long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the last k b folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByG_P_Last( long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the last k b folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByG_P_Last( long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folders before and after the current k b folder in the ordered set where groupId = ? and parentKBFolderId = ?. * * @param kbFolderId the primary key of the current k b folder * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder[] findByG_P_PrevAndNext( long kbFolderId, long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns all the k b folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @return the matching k b folders that the user has permission to view * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> filterFindByG_P( long groupId, long parentKBFolderId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns a range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folder ID * @param start the lower bound of the range of k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @return the range of matching k b folders that the user has permission to view * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> filterFindByG_P( long groupId, long parentKBFolderId, int start, int end) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns an ordered range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folder ID * @param start the lower bound of the range of k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching k b folders that the user has permission to view * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> filterFindByG_P( long groupId, long parentKBFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folders before and after the current k b folder in the ordered set of k b folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * @param kbFolderId the primary key of the current k b folder * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder[] filterFindByG_P_PrevAndNext( long kbFolderId, long groupId, long parentKBFolderId, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Removes all the k b folders where groupId = ? and parentKBFolderId = ? from the database. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @throws SystemException if a system exception occurred */ public void removeByG_P(long groupId, long parentKBFolderId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @return the number of matching k b folders * @throws SystemException if a system exception occurred */ public int countByG_P(long groupId, long parentKBFolderId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders that the user has permission to view where groupId = ? and parentKBFolderId = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @return the number of matching k b folders that the user has permission to view * @throws SystemException if a system exception occurred */ public int filterCountByG_P(long groupId, long parentKBFolderId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folder where groupId = ? and parentKBFolderId = ? and name = ? or throws a {@link com.liferay.knowledgebase.NoSuchFolderException} if it could not be found. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param name the name * @return the matching k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByG_P_N(long groupId, long parentKBFolderId, java.lang.String name) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b 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 k b folder ID * @param name the name * @return the matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByG_P_N(long groupId, long parentKBFolderId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b 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 k b folder ID * @param name the name * @param retrieveFromCache whether to use the finder cache * @return the matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByG_P_N(long groupId, long parentKBFolderId, java.lang.String name, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException; /** * Removes the k b folder where groupId = ? and parentKBFolderId = ? and name = ? from the database. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param name the name * @return the k b folder that was removed * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder removeByG_P_N( long groupId, long parentKBFolderId, java.lang.String name) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders where groupId = ? and parentKBFolderId = ? and name = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param name the name * @return the number of matching k b folders * @throws SystemException if a system exception occurred */ public int countByG_P_N(long groupId, long parentKBFolderId, java.lang.String name) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folder where groupId = ? and parentKBFolderId = ? and urlTitle = ? or throws a {@link com.liferay.knowledgebase.NoSuchFolderException} if it could not be found. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param urlTitle the url title * @return the matching k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b 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 k b folder ID * @param urlTitle the url title * @return the matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByG_P_UT( long groupId, long parentKBFolderId, java.lang.String urlTitle) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b 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 k b folder ID * @param urlTitle the url title * @param retrieveFromCache whether to use the finder cache * @return the matching k b folder, or <code>null</code> if a matching k b folder could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByG_P_UT( long groupId, long parentKBFolderId, java.lang.String urlTitle, boolean retrieveFromCache) throws com.liferay.portal.kernel.exception.SystemException; /** * Removes the k b folder where groupId = ? and parentKBFolderId = ? and urlTitle = ? from the database. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param urlTitle the url title * @return the k b folder that was removed * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder removeByG_P_UT( long groupId, long parentKBFolderId, java.lang.String urlTitle) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders where groupId = ? and parentKBFolderId = ? and urlTitle = ?. * * @param groupId the group ID * @param parentKBFolderId the parent k b folder ID * @param urlTitle the url title * @return the number of matching k b folders * @throws SystemException if a system exception occurred */ public int countByG_P_UT(long groupId, long parentKBFolderId, java.lang.String urlTitle) throws com.liferay.portal.kernel.exception.SystemException; /** * Caches the k b folder in the entity cache if it is enabled. * * @param kbFolder the k b folder */ public void cacheResult(com.liferay.knowledgebase.model.KBFolder kbFolder); /** * Caches the k b folders in the entity cache if it is enabled. * * @param kbFolders the k b folders */ public void cacheResult( java.util.List<com.liferay.knowledgebase.model.KBFolder> kbFolders); /** * Creates a new k b folder with the primary key. Does not add the k b folder to the database. * * @param kbFolderId the primary key for the new k b folder * @return the new k b folder */ public com.liferay.knowledgebase.model.KBFolder create(long kbFolderId); /** * Removes the k b folder with the primary key from the database. Also notifies the appropriate model listeners. * * @param kbFolderId the primary key of the k b folder * @return the k b folder that was removed * @throws com.liferay.knowledgebase.NoSuchFolderException if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder remove(long kbFolderId) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; public com.liferay.knowledgebase.model.KBFolder updateImpl( com.liferay.knowledgebase.model.KBFolder kbFolder) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folder with the primary key or throws a {@link com.liferay.knowledgebase.NoSuchFolderException} if it could not be found. * * @param kbFolderId the primary key of the k b folder * @return the k b folder * @throws com.liferay.knowledgebase.NoSuchFolderException if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder findByPrimaryKey( long kbFolderId) throws com.liferay.knowledgebase.NoSuchFolderException, com.liferay.portal.kernel.exception.SystemException; /** * Returns the k b folder with the primary key or returns <code>null</code> if it could not be found. * * @param kbFolderId the primary key of the k b folder * @return the k b folder, or <code>null</code> if a k b folder with the primary key could not be found * @throws SystemException if a system exception occurred */ public com.liferay.knowledgebase.model.KBFolder fetchByPrimaryKey( long kbFolderId) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns all the k b folders. * * @return the k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findAll() throws com.liferay.portal.kernel.exception.SystemException; /** * Returns a range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @return the range of k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findAll( int start, int end) throws com.liferay.portal.kernel.exception.SystemException; /** * Returns an ordered range of all the k b 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 com.liferay.portal.kernel.dao.orm.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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.knowledgebase.model.impl.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 k b folders * @param end the upper bound of the range of k b folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of k b folders * @throws SystemException if a system exception occurred */ public java.util.List<com.liferay.knowledgebase.model.KBFolder> findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception.SystemException; /** * Removes all the k b folders from the database. * * @throws SystemException if a system exception occurred */ public void removeAll() throws com.liferay.portal.kernel.exception.SystemException; /** * Returns the number of k b folders. * * @return the number of k b folders * @throws SystemException if a system exception occurred */ public int countAll() throws com.liferay.portal.kernel.exception.SystemException; }