/** * 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.portal.kernel.service.persistence; import aQute.bnd.annotation.ProviderType; import com.liferay.portal.kernel.exception.NoSuchWorkflowDefinitionLinkException; import com.liferay.portal.kernel.model.WorkflowDefinitionLink; /** * The persistence interface for the workflow definition link service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author Brian Wing Shun Chan * @see com.liferay.portal.service.persistence.impl.WorkflowDefinitionLinkPersistenceImpl * @see WorkflowDefinitionLinkUtil * @generated */ @ProviderType public interface WorkflowDefinitionLinkPersistence extends BasePersistence<WorkflowDefinitionLink> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link WorkflowDefinitionLinkUtil} to access the workflow definition link persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this interface. */ /** * Returns all the workflow definition links where companyId = ?. * * @param companyId the company ID * @return the matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByCompanyId( long companyId); /** * Returns a range of all the workflow definition links where 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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @return the range of matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByCompanyId( long companyId, int start, int end); /** * Returns an ordered range of all the workflow definition links where 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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByCompanyId( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns an ordered range of all the workflow definition links where 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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (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 workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByCompanyId( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator, boolean retrieveFromCache); /** * Returns the first workflow definition link in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the first workflow definition link in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByCompanyId_First(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns the last workflow definition link in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the last workflow definition link in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByCompanyId_Last(long companyId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns the workflow definition links before and after the current workflow definition link in the ordered set where companyId = ?. * * @param workflowDefinitionLinkId the primary key of the current workflow definition link * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink[] findByCompanyId_PrevAndNext( long workflowDefinitionLinkId, long companyId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Removes all the workflow definition links where companyId = ? from the database. * * @param companyId the company ID */ public void removeByCompanyId(long companyId); /** * Returns the number of workflow definition links where companyId = ?. * * @param companyId the company ID * @return the number of matching workflow definition links */ public int countByCompanyId(long companyId); /** * Returns all the workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @return the matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByG_C_C(long groupId, long companyId, long classNameId); /** * Returns a range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * * <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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param classNameId the class name ID * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @return the range of matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByG_C_C(long groupId, long companyId, long classNameId, int start, int end); /** * Returns an ordered range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * * <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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param classNameId the class name ID * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByG_C_C(long groupId, long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns an ordered range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * * <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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param classNameId the class name ID * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (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 workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByG_C_C(long groupId, long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator, boolean retrieveFromCache); /** * Returns the first workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByG_C_C_First(long groupId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the first workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByG_C_C_First(long groupId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns the last workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByG_C_C_Last(long groupId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the last workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByG_C_C_Last(long groupId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns the workflow definition links before and after the current workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ?. * * @param workflowDefinitionLinkId the primary key of the current workflow definition link * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink[] findByG_C_C_PrevAndNext( long workflowDefinitionLinkId, long groupId, long companyId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Removes all the workflow definition links where groupId = ? and companyId = ? and classNameId = ? from the database. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID */ public void removeByG_C_C(long groupId, long companyId, long classNameId); /** * Returns the number of workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @return the number of matching workflow definition links */ public int countByG_C_C(long groupId, long companyId, long classNameId); /** * Returns all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @return the matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByC_W_W(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion); /** * Returns a range of all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * <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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @return the range of matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByC_W_W(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, int start, int end); /** * Returns an ordered range of all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * <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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByC_W_W(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns an ordered range of all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * <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 WorkflowDefinitionLinkModelImpl}. 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 companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param start the lower bound of the range of workflow definition links * @param end the upper bound of the range of workflow definition links (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 workflow definition links */ public java.util.List<WorkflowDefinitionLink> findByC_W_W(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator, boolean retrieveFromCache); /** * Returns the first workflow definition link in the ordered set where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByC_W_W_First(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the first workflow definition link in the ordered set where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByC_W_W_First(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns the last workflow definition link in the ordered set where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByC_W_W_Last(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the last workflow definition link in the ordered set where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByC_W_W_Last(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns the workflow definition links before and after the current workflow definition link in the ordered set where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param workflowDefinitionLinkId the primary key of the current workflow definition link * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink[] findByC_W_W_PrevAndNext( long workflowDefinitionLinkId, long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Removes all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ? from the database. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version */ public void removeByC_W_W(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion); /** * Returns the number of workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * * @param companyId the company ID * @param workflowDefinitionName the workflow definition name * @param workflowDefinitionVersion the workflow definition version * @return the number of matching workflow definition links */ public int countByC_W_W(long companyId, java.lang.String workflowDefinitionName, int workflowDefinitionVersion); /** * Returns the workflow definition link where groupId = ? and companyId = ? and classNameId = ? and classPK = ? and typePK = ? or throws a {@link NoSuchWorkflowDefinitionLinkException} if it could not be found. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param typePK the type pk * @return the matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByG_C_C_C_T(long groupId, long companyId, long classNameId, long classPK, long typePK) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the workflow definition link where groupId = ? and companyId = ? and classNameId = ? and classPK = ? and typePK = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param typePK the type pk * @return the matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByG_C_C_C_T(long groupId, long companyId, long classNameId, long classPK, long typePK); /** * Returns the workflow definition link where groupId = ? and companyId = ? and classNameId = ? and classPK = ? and typePK = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param typePK the type pk * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching workflow definition link, or <code>null</code> if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByG_C_C_C_T(long groupId, long companyId, long classNameId, long classPK, long typePK, boolean retrieveFromCache); /** * Removes the workflow definition link where groupId = ? and companyId = ? and classNameId = ? and classPK = ? and typePK = ? from the database. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param typePK the type pk * @return the workflow definition link that was removed */ public WorkflowDefinitionLink removeByG_C_C_C_T(long groupId, long companyId, long classNameId, long classPK, long typePK) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the number of workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ? and typePK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param typePK the type pk * @return the number of matching workflow definition links */ public int countByG_C_C_C_T(long groupId, long companyId, long classNameId, long classPK, long typePK); /** * Caches the workflow definition link in the entity cache if it is enabled. * * @param workflowDefinitionLink the workflow definition link */ public void cacheResult(WorkflowDefinitionLink workflowDefinitionLink); /** * Caches the workflow definition links in the entity cache if it is enabled. * * @param workflowDefinitionLinks the workflow definition links */ public void cacheResult( java.util.List<WorkflowDefinitionLink> workflowDefinitionLinks); /** * Creates a new workflow definition link with the primary key. Does not add the workflow definition link to the database. * * @param workflowDefinitionLinkId the primary key for the new workflow definition link * @return the new workflow definition link */ public WorkflowDefinitionLink create(long workflowDefinitionLinkId); /** * Removes the workflow definition link with the primary key from the database. Also notifies the appropriate model listeners. * * @param workflowDefinitionLinkId the primary key of the workflow definition link * @return the workflow definition link that was removed * @throws NoSuchWorkflowDefinitionLinkException if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink remove(long workflowDefinitionLinkId) throws NoSuchWorkflowDefinitionLinkException; public WorkflowDefinitionLink updateImpl( WorkflowDefinitionLink workflowDefinitionLink); /** * Returns the workflow definition link with the primary key or throws a {@link NoSuchWorkflowDefinitionLinkException} if it could not be found. * * @param workflowDefinitionLinkId the primary key of the workflow definition link * @return the workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink findByPrimaryKey( long workflowDefinitionLinkId) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the workflow definition link with the primary key or returns <code>null</code> if it could not be found. * * @param workflowDefinitionLinkId the primary key of the workflow definition link * @return the workflow definition link, or <code>null</code> if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink fetchByPrimaryKey( long workflowDefinitionLinkId); @Override public java.util.Map<java.io.Serializable, WorkflowDefinitionLink> fetchByPrimaryKeys( java.util.Set<java.io.Serializable> primaryKeys); /** * Returns all the workflow definition links. * * @return the workflow definition links */ public java.util.List<WorkflowDefinitionLink> findAll(); /** * Returns a range of all the workflow definition links. * * <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 WorkflowDefinitionLinkModelImpl}. 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 workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @return the range of workflow definition links */ public java.util.List<WorkflowDefinitionLink> findAll(int start, int end); /** * Returns an ordered range of all the workflow definition links. * * <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 WorkflowDefinitionLinkModelImpl}. 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 workflow definition links * @param end the upper bound of the range of workflow definition links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of workflow definition links */ public java.util.List<WorkflowDefinitionLink> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator); /** * Returns an ordered range of all the workflow definition links. * * <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 WorkflowDefinitionLinkModelImpl}. 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 workflow definition links * @param end the upper bound of the range of workflow definition links (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 workflow definition links */ public java.util.List<WorkflowDefinitionLink> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<WorkflowDefinitionLink> orderByComparator, boolean retrieveFromCache); /** * Removes all the workflow definition links from the database. */ public void removeAll(); /** * Returns the number of workflow definition links. * * @return the number of workflow definition links */ public int countAll(); }