All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.kernel.service.persistence.WorkflowDefinitionLinkPersistence Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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;

import java.io.Serializable;

import java.util.Map;
import java.util.Set;

/**
 * The persistence interface for the workflow definition link service.
 *
 * 

* Caching information and settings can be found in portal.properties *

* * @author Brian Wing Shun Chan * @see WorkflowDefinitionLinkUtil * @generated */ @ProviderType public interface WorkflowDefinitionLinkPersistence extends BasePersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. Always use {@link WorkflowDefinitionLinkUtil} to access the workflow definition link persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface. */ @Override public Map fetchByPrimaryKeys( Set primaryKeys); /** * Returns all the workflow definition links where companyId = ?. * * @param companyId the company ID * @return the matching workflow definition links */ public java.util.List findByCompanyId( long companyId); /** * Returns a range of all the workflow definition links where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 findByCompanyId( long companyId, int start, int end); /** * Returns an ordered range of all the workflow definition links where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @return the ordered range of matching workflow definition links */ public java.util.List findByCompanyId( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the workflow definition links where companyId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching workflow definition links */ public java.util.List findByCompanyId( long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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 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 null) * @return the first matching workflow definition link, or null if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByCompanyId_First( long companyId, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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 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 null) * @return the last matching workflow definition link, or null if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByCompanyId_Last( long companyId, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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 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 findByG_C_C( long groupId, long companyId, long classNameId); /** * Returns a range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 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 = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @return the ordered range of matching workflow definition links */ public java.util.List findByG_C_C( long groupId, long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching workflow definition links */ public java.util.List findByG_C_C( long groupId, long companyId, long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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 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 null) * @return the first matching workflow definition link, or null 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 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 null) * @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 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 null) * @return the last matching workflow definition link, or null 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 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 null) * @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 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 findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion); /** * Returns a range of all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, int start, int end); /** * Returns an ordered range of all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @return the ordered range of matching workflow definition links */ public java.util.List findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the workflow definition links where companyId = ? and workflowDefinitionName = ? and workflowDefinitionVersion = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching workflow definition links */ public java.util.List findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, int start, int end, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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, String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @return the first matching workflow definition link, or null if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByC_W_W_First( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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, String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @return the last matching workflow definition link, or null if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByC_W_W_Last( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator 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 null) * @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, String workflowDefinitionName, int workflowDefinitionVersion, com.liferay.portal.kernel.util.OrderByComparator 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, 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, String workflowDefinitionName, int workflowDefinitionVersion); /** * Returns all the workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @return the matching workflow definition links */ public java.util.List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK); /** * Returns a range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @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 findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK, int start, int end); /** * Returns an ordered range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @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 null) * @return the ordered range of matching workflow definition links */ public java.util.List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @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 null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching workflow definition links */ public java.util.List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK, int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator, boolean retrieveFromCache); /** * Returns the first workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByG_C_C_C_First( long groupId, long companyId, long classNameId, long classPK, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the first workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching workflow definition link, or null if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByG_C_C_C_First( long groupId, long companyId, long classNameId, long classPK, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the last workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching workflow definition link * @throws NoSuchWorkflowDefinitionLinkException if a matching workflow definition link could not be found */ public WorkflowDefinitionLink findByG_C_C_C_Last( long groupId, long companyId, long classNameId, long classPK, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Returns the last workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching workflow definition link, or null if a matching workflow definition link could not be found */ public WorkflowDefinitionLink fetchByG_C_C_C_Last( long groupId, long companyId, long classNameId, long classPK, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns the workflow definition links before and after the current workflow definition link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @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 classPK the class pk * @param orderByComparator the comparator to order the set by (optionally null) * @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_C_PrevAndNext( long workflowDefinitionLinkId, long groupId, long companyId, long classNameId, long classPK, com.liferay.portal.kernel.util.OrderByComparator orderByComparator) throws NoSuchWorkflowDefinitionLinkException; /** * Removes all the workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ? from the database. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk */ public void removeByG_C_C_C( long groupId, long companyId, long classNameId, long classPK); /** * Returns the number of workflow definition links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. * * @param groupId the group ID * @param companyId the company ID * @param classNameId the class name ID * @param classPK the class pk * @return the number of matching workflow definition links */ public int countByG_C_C_C( long groupId, long companyId, long classNameId, long classPK); /** * Returns the workflow definition link where groupId = ? and companyId = ? and classNameId = ? and classPK = ? and typePK = ? or throws a 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 null 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 null 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 null 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 null 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 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 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 null if it could not be found. * * @param workflowDefinitionLinkId the primary key of the workflow definition link * @return the workflow definition link, or null if a workflow definition link with the primary key could not be found */ public WorkflowDefinitionLink fetchByPrimaryKey( long workflowDefinitionLinkId); /** * Returns all the workflow definition links. * * @return the workflow definition links */ public java.util.List findAll(); /** * Returns a range of all the workflow definition links. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 findAll(int start, int end); /** * Returns an ordered range of all the workflow definition links. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @return the ordered range of workflow definition links */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator orderByComparator); /** * Returns an ordered range of all the workflow definition links. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowDefinitionLinkModelImpl. If both orderByComparator 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. *

* * @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 null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of workflow definition links */ public java.util.List findAll( int start, int end, com.liferay.portal.kernel.util.OrderByComparator 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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy