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

com.liferay.portal.kernel.service.persistence.WorkflowDefinitionLinkUtil 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.bean.PortalBeanLocatorUtil;
import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.model.WorkflowDefinitionLink;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.util.OrderByComparator;

import java.io.Serializable;

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

/**
 * The persistence utility for the workflow definition link service. This utility wraps com.liferay.portal.service.persistence.impl.WorkflowDefinitionLinkPersistenceImpl and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
 *
 * 

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

* * @author Brian Wing Shun Chan * @see WorkflowDefinitionLinkPersistence * @generated */ @ProviderType public class WorkflowDefinitionLinkUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ /** * @see BasePersistence#clearCache() */ public static void clearCache() { getPersistence().clearCache(); } /** * @see BasePersistence#clearCache(com.liferay.portal.kernel.model.BaseModel) */ public static void clearCache( WorkflowDefinitionLink workflowDefinitionLink) { getPersistence().clearCache(workflowDefinitionLink); } /** * @see BasePersistence#countWithDynamicQuery(DynamicQuery) */ public static long countWithDynamicQuery(DynamicQuery dynamicQuery) { return getPersistence().countWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#fetchByPrimaryKeys(Set) */ public static Map fetchByPrimaryKeys( Set primaryKeys) { return getPersistence().fetchByPrimaryKeys(primaryKeys); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery) { return getPersistence().findWithDynamicQuery(dynamicQuery); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end) { return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); } /** * @see BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findWithDynamicQuery( dynamicQuery, start, end, orderByComparator); } /** * @see BasePersistence#update(com.liferay.portal.kernel.model.BaseModel) */ public static WorkflowDefinitionLink update( WorkflowDefinitionLink workflowDefinitionLink) { return getPersistence().update(workflowDefinitionLink); } /** * @see BasePersistence#update(com.liferay.portal.kernel.model.BaseModel, ServiceContext) */ public static WorkflowDefinitionLink update( WorkflowDefinitionLink workflowDefinitionLink, ServiceContext serviceContext) { return getPersistence().update(workflowDefinitionLink, serviceContext); } /** * Returns all the workflow definition links where companyId = ?. * * @param companyId the company ID * @return the matching workflow definition links */ public static List findByCompanyId(long companyId) { return getPersistence().findByCompanyId(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 static List findByCompanyId( long companyId, int start, int end) { return getPersistence().findByCompanyId(companyId, start, 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 static List findByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByCompanyId( companyId, start, end, 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 static List findByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByCompanyId( companyId, start, end, orderByComparator, 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 static WorkflowDefinitionLink findByCompanyId_First( long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByCompanyId_First( companyId, orderByComparator); } /** * 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 static WorkflowDefinitionLink fetchByCompanyId_First( long companyId, OrderByComparator orderByComparator) { return getPersistence().fetchByCompanyId_First( companyId, 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 static WorkflowDefinitionLink findByCompanyId_Last( long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByCompanyId_Last( companyId, 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, or null if a matching workflow definition link could not be found */ public static WorkflowDefinitionLink fetchByCompanyId_Last( long companyId, OrderByComparator orderByComparator) { return getPersistence().fetchByCompanyId_Last( companyId, 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 static WorkflowDefinitionLink[] findByCompanyId_PrevAndNext( long workflowDefinitionLinkId, long companyId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByCompanyId_PrevAndNext( workflowDefinitionLinkId, companyId, orderByComparator); } /** * Removes all the workflow definition links where companyId = ? from the database. * * @param companyId the company ID */ public static void removeByCompanyId(long companyId) { getPersistence().removeByCompanyId(companyId); } /** * Returns the number of workflow definition links where companyId = ?. * * @param companyId the company ID * @return the number of matching workflow definition links */ public static int countByCompanyId(long companyId) { return getPersistence().countByCompanyId(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 static List findByG_C_C( long groupId, long companyId, long classNameId) { return getPersistence().findByG_C_C(groupId, companyId, 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 static List findByG_C_C( long groupId, long companyId, long classNameId, int start, int end) { return getPersistence().findByG_C_C( groupId, companyId, classNameId, start, 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 static List findByG_C_C( long groupId, long companyId, long classNameId, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByG_C_C( groupId, companyId, classNameId, start, end, 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 static List findByG_C_C( long groupId, long companyId, long classNameId, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByG_C_C( groupId, companyId, classNameId, start, end, orderByComparator, 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 static WorkflowDefinitionLink findByG_C_C_First( long groupId, long companyId, long classNameId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_First( groupId, companyId, classNameId, orderByComparator); } /** * 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 static WorkflowDefinitionLink fetchByG_C_C_First( long groupId, long companyId, long classNameId, OrderByComparator orderByComparator) { return getPersistence().fetchByG_C_C_First( groupId, companyId, classNameId, 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 static WorkflowDefinitionLink findByG_C_C_Last( long groupId, long companyId, long classNameId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_Last( groupId, companyId, classNameId, 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, or null if a matching workflow definition link could not be found */ public static WorkflowDefinitionLink fetchByG_C_C_Last( long groupId, long companyId, long classNameId, OrderByComparator orderByComparator) { return getPersistence().fetchByG_C_C_Last( groupId, companyId, classNameId, 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 static WorkflowDefinitionLink[] findByG_C_C_PrevAndNext( long workflowDefinitionLinkId, long groupId, long companyId, long classNameId, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_PrevAndNext( workflowDefinitionLinkId, groupId, companyId, classNameId, orderByComparator); } /** * 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 static void removeByG_C_C( long groupId, long companyId, long classNameId) { getPersistence().removeByG_C_C(groupId, companyId, 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 static int countByG_C_C( long groupId, long companyId, long classNameId) { return getPersistence().countByG_C_C(groupId, companyId, 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 static List findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion) { return getPersistence().findByC_W_W( companyId, workflowDefinitionName, 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 static List findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, int start, int end) { return getPersistence().findByC_W_W( companyId, workflowDefinitionName, workflowDefinitionVersion, start, 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 static List findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByC_W_W( companyId, workflowDefinitionName, workflowDefinitionVersion, start, end, 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 static List findByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByC_W_W( companyId, workflowDefinitionName, workflowDefinitionVersion, start, end, orderByComparator, 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 static WorkflowDefinitionLink findByC_W_W_First( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByC_W_W_First( companyId, workflowDefinitionName, workflowDefinitionVersion, orderByComparator); } /** * 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 static WorkflowDefinitionLink fetchByC_W_W_First( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, OrderByComparator orderByComparator) { return getPersistence().fetchByC_W_W_First( companyId, workflowDefinitionName, workflowDefinitionVersion, 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 static WorkflowDefinitionLink findByC_W_W_Last( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByC_W_W_Last( companyId, workflowDefinitionName, workflowDefinitionVersion, 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, or null if a matching workflow definition link could not be found */ public static WorkflowDefinitionLink fetchByC_W_W_Last( long companyId, String workflowDefinitionName, int workflowDefinitionVersion, OrderByComparator orderByComparator) { return getPersistence().fetchByC_W_W_Last( companyId, workflowDefinitionName, workflowDefinitionVersion, 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 static WorkflowDefinitionLink[] findByC_W_W_PrevAndNext( long workflowDefinitionLinkId, long companyId, String workflowDefinitionName, int workflowDefinitionVersion, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByC_W_W_PrevAndNext( workflowDefinitionLinkId, companyId, workflowDefinitionName, workflowDefinitionVersion, orderByComparator); } /** * 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 static void removeByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion) { getPersistence().removeByC_W_W( companyId, workflowDefinitionName, 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 static int countByC_W_W( long companyId, String workflowDefinitionName, int workflowDefinitionVersion) { return getPersistence().countByC_W_W( companyId, workflowDefinitionName, 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 static List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK) { return getPersistence().findByG_C_C_C( groupId, companyId, classNameId, 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 static List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK, int start, int end) { return getPersistence().findByG_C_C_C( groupId, companyId, classNameId, classPK, start, 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 static List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK, int start, int end, OrderByComparator orderByComparator) { return getPersistence().findByG_C_C_C( groupId, companyId, classNameId, classPK, start, end, 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 static List findByG_C_C_C( long groupId, long companyId, long classNameId, long classPK, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findByG_C_C_C( groupId, companyId, classNameId, classPK, start, end, orderByComparator, 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 static WorkflowDefinitionLink findByG_C_C_C_First( long groupId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_C_First( groupId, companyId, classNameId, classPK, orderByComparator); } /** * 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 static WorkflowDefinitionLink fetchByG_C_C_C_First( long groupId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator) { return getPersistence().fetchByG_C_C_C_First( groupId, companyId, classNameId, classPK, 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 static WorkflowDefinitionLink findByG_C_C_C_Last( long groupId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_C_Last( groupId, companyId, classNameId, classPK, 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, or null if a matching workflow definition link could not be found */ public static WorkflowDefinitionLink fetchByG_C_C_C_Last( long groupId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator) { return getPersistence().fetchByG_C_C_C_Last( groupId, companyId, classNameId, classPK, 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 static WorkflowDefinitionLink[] findByG_C_C_C_PrevAndNext( long workflowDefinitionLinkId, long groupId, long companyId, long classNameId, long classPK, OrderByComparator orderByComparator) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_C_PrevAndNext( workflowDefinitionLinkId, groupId, companyId, classNameId, classPK, orderByComparator); } /** * 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 static void removeByG_C_C_C( long groupId, long companyId, long classNameId, long classPK) { getPersistence().removeByG_C_C_C( groupId, companyId, classNameId, 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 static int countByG_C_C_C( long groupId, long companyId, long classNameId, long classPK) { return getPersistence().countByG_C_C_C( groupId, companyId, classNameId, 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 static WorkflowDefinitionLink findByG_C_C_C_T( long groupId, long companyId, long classNameId, long classPK, long typePK) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByG_C_C_C_T( groupId, companyId, classNameId, classPK, 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. 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 static WorkflowDefinitionLink fetchByG_C_C_C_T( long groupId, long companyId, long classNameId, long classPK, long typePK) { return getPersistence().fetchByG_C_C_C_T( groupId, companyId, classNameId, classPK, 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 static WorkflowDefinitionLink fetchByG_C_C_C_T( long groupId, long companyId, long classNameId, long classPK, long typePK, boolean retrieveFromCache) { return getPersistence().fetchByG_C_C_C_T( groupId, companyId, classNameId, classPK, typePK, 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 static WorkflowDefinitionLink removeByG_C_C_C_T( long groupId, long companyId, long classNameId, long classPK, long typePK) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().removeByG_C_C_C_T( groupId, companyId, classNameId, classPK, typePK); } /** * 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 static int countByG_C_C_C_T( long groupId, long companyId, long classNameId, long classPK, long typePK) { return getPersistence().countByG_C_C_C_T( groupId, companyId, classNameId, classPK, typePK); } /** * Caches the workflow definition link in the entity cache if it is enabled. * * @param workflowDefinitionLink the workflow definition link */ public static void cacheResult( WorkflowDefinitionLink workflowDefinitionLink) { getPersistence().cacheResult(workflowDefinitionLink); } /** * Caches the workflow definition links in the entity cache if it is enabled. * * @param workflowDefinitionLinks the workflow definition links */ public static void cacheResult( List workflowDefinitionLinks) { getPersistence().cacheResult(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 static WorkflowDefinitionLink create(long workflowDefinitionLinkId) { return getPersistence().create(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 static WorkflowDefinitionLink remove(long workflowDefinitionLinkId) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().remove(workflowDefinitionLinkId); } public static WorkflowDefinitionLink updateImpl( WorkflowDefinitionLink workflowDefinitionLink) { return getPersistence().updateImpl(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 static WorkflowDefinitionLink findByPrimaryKey( long workflowDefinitionLinkId) throws com.liferay.portal.kernel.exception. NoSuchWorkflowDefinitionLinkException { return getPersistence().findByPrimaryKey(workflowDefinitionLinkId); } /** * 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 static WorkflowDefinitionLink fetchByPrimaryKey( long workflowDefinitionLinkId) { return getPersistence().fetchByPrimaryKey(workflowDefinitionLinkId); } /** * Returns all the workflow definition links. * * @return the workflow definition links */ public static List findAll() { return getPersistence().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 static List findAll(int start, int end) { return getPersistence().findAll(start, 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 static List findAll( int start, int end, OrderByComparator orderByComparator) { return getPersistence().findAll(start, end, 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 static List findAll( int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence().findAll( start, end, orderByComparator, retrieveFromCache); } /** * Removes all the workflow definition links from the database. */ public static void removeAll() { getPersistence().removeAll(); } /** * Returns the number of workflow definition links. * * @return the number of workflow definition links */ public static int countAll() { return getPersistence().countAll(); } public static WorkflowDefinitionLinkPersistence getPersistence() { if (_persistence == null) { _persistence = (WorkflowDefinitionLinkPersistence)PortalBeanLocatorUtil.locate( WorkflowDefinitionLinkPersistence.class.getName()); } return _persistence; } private static WorkflowDefinitionLinkPersistence _persistence; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy