public class AppBuilderWorkflowTaskLinkUtil
extends java.lang.Object
com.liferay.app.builder.workflow.service.persistence.impl.AppBuilderWorkflowTaskLinkPersistenceImpl 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
AppBuilderWorkflowTaskLinkPersistence| Constructor and Description |
|---|
AppBuilderWorkflowTaskLinkUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink)
Caches the app builder workflow task link in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.List<AppBuilderWorkflowTaskLink> appBuilderWorkflowTaskLinks)
Caches the app builder workflow task links in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink) |
static int |
countAll()
Returns the number of app builder workflow task links.
|
static int |
countByA_A_D_W(long appBuilderAppId,
long appBuilderAppVersionId,
long ddmStructureLayoutId,
java.lang.String workflowTaskName)
Returns the number of app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and ddmStructureLayoutId = ? and workflowTaskName = ?.
|
static int |
countByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName)
Returns the number of app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static int |
countByA_A(long appBuilderAppId,
long appBuilderAppVersionId)
Returns the number of app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static int |
countByAppBuilderAppId(long appBuilderAppId)
Returns the number of app builder workflow task links where appBuilderAppId = ?.
|
static long |
countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static AppBuilderWorkflowTaskLink |
create(long appBuilderWorkflowTaskLinkId)
Creates a new app builder workflow task link with the primary key.
|
static AppBuilderWorkflowTaskLink |
fetchByA_A_D_W(long appBuilderAppId,
long appBuilderAppVersionId,
long ddmStructureLayoutId,
java.lang.String workflowTaskName)
Returns the app builder workflow task link where appBuilderAppId = ? and appBuilderAppVersionId = ? and ddmStructureLayoutId = ? and workflowTaskName = ? or returns
null if it could not be found. |
static AppBuilderWorkflowTaskLink |
fetchByA_A_D_W(long appBuilderAppId,
long appBuilderAppVersionId,
long ddmStructureLayoutId,
java.lang.String workflowTaskName,
boolean useFinderCache)
Returns the app builder workflow task link where appBuilderAppId = ? and appBuilderAppVersionId = ? and ddmStructureLayoutId = ? and workflowTaskName = ? or returns
null if it could not be found, optionally using the finder cache. |
static AppBuilderWorkflowTaskLink |
fetchByA_A_First(long appBuilderAppId,
long appBuilderAppVersionId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the first app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static AppBuilderWorkflowTaskLink |
fetchByA_A_Last(long appBuilderAppId,
long appBuilderAppVersionId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the last app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static AppBuilderWorkflowTaskLink |
fetchByA_A_W_First(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the first app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static AppBuilderWorkflowTaskLink |
fetchByA_A_W_Last(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the last app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static AppBuilderWorkflowTaskLink |
fetchByAppBuilderAppId_First(long appBuilderAppId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the first app builder workflow task link in the ordered set where appBuilderAppId = ?.
|
static AppBuilderWorkflowTaskLink |
fetchByAppBuilderAppId_Last(long appBuilderAppId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the last app builder workflow task link in the ordered set where appBuilderAppId = ?.
|
static AppBuilderWorkflowTaskLink |
fetchByPrimaryKey(long appBuilderWorkflowTaskLinkId)
Returns the app builder workflow task link with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,AppBuilderWorkflowTaskLink> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static java.util.List<AppBuilderWorkflowTaskLink> |
findAll()
Returns all the app builder workflow task links.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findAll(int start,
int end)
Returns a range of all the app builder workflow task links.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns an ordered range of all the app builder workflow task links.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findAll(int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the app builder workflow task links.
|
static AppBuilderWorkflowTaskLink |
findByA_A_D_W(long appBuilderAppId,
long appBuilderAppVersionId,
long ddmStructureLayoutId,
java.lang.String workflowTaskName)
Returns the app builder workflow task link where appBuilderAppId = ? and appBuilderAppVersionId = ? and ddmStructureLayoutId = ? and workflowTaskName = ? or throws a
NoSuchTaskLinkException if it could not be found. |
static AppBuilderWorkflowTaskLink |
findByA_A_First(long appBuilderAppId,
long appBuilderAppVersionId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the first app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static AppBuilderWorkflowTaskLink |
findByA_A_Last(long appBuilderAppId,
long appBuilderAppVersionId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the last app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static AppBuilderWorkflowTaskLink[] |
findByA_A_PrevAndNext(long appBuilderWorkflowTaskLinkId,
long appBuilderAppId,
long appBuilderAppVersionId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the app builder workflow task links before and after the current app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static AppBuilderWorkflowTaskLink |
findByA_A_W_First(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the first app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static AppBuilderWorkflowTaskLink |
findByA_A_W_Last(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the last app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static AppBuilderWorkflowTaskLink[] |
findByA_A_W_PrevAndNext(long appBuilderWorkflowTaskLinkId,
long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the app builder workflow task links before and after the current app builder workflow task link in the ordered set where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName)
Returns all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
int start,
int end)
Returns a range of all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns an ordered range of all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A(long appBuilderAppId,
long appBuilderAppVersionId)
Returns all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A(long appBuilderAppId,
long appBuilderAppVersionId,
int start,
int end)
Returns a range of all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A(long appBuilderAppId,
long appBuilderAppVersionId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns an ordered range of all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByA_A(long appBuilderAppId,
long appBuilderAppVersionId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ?.
|
static AppBuilderWorkflowTaskLink |
findByAppBuilderAppId_First(long appBuilderAppId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the first app builder workflow task link in the ordered set where appBuilderAppId = ?.
|
static AppBuilderWorkflowTaskLink |
findByAppBuilderAppId_Last(long appBuilderAppId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the last app builder workflow task link in the ordered set where appBuilderAppId = ?.
|
static AppBuilderWorkflowTaskLink[] |
findByAppBuilderAppId_PrevAndNext(long appBuilderWorkflowTaskLinkId,
long appBuilderAppId,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns the app builder workflow task links before and after the current app builder workflow task link in the ordered set where appBuilderAppId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByAppBuilderAppId(long appBuilderAppId)
Returns all the app builder workflow task links where appBuilderAppId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByAppBuilderAppId(long appBuilderAppId,
int start,
int end)
Returns a range of all the app builder workflow task links where appBuilderAppId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByAppBuilderAppId(long appBuilderAppId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
Returns an ordered range of all the app builder workflow task links where appBuilderAppId = ?.
|
static java.util.List<AppBuilderWorkflowTaskLink> |
findByAppBuilderAppId(long appBuilderAppId,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the app builder workflow task links where appBuilderAppId = ?.
|
static AppBuilderWorkflowTaskLink |
findByPrimaryKey(long appBuilderWorkflowTaskLinkId)
Returns the app builder workflow task link with the primary key or throws a
NoSuchTaskLinkException if it could not be found. |
static java.util.List<AppBuilderWorkflowTaskLink> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) |
static java.util.List<AppBuilderWorkflowTaskLink> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<AppBuilderWorkflowTaskLink> |
findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) |
static AppBuilderWorkflowTaskLinkPersistence |
getPersistence() |
static AppBuilderWorkflowTaskLink |
remove(long appBuilderWorkflowTaskLinkId)
Removes the app builder workflow task link with the primary key from the database.
|
static void |
removeAll()
Removes all the app builder workflow task links from the database.
|
static AppBuilderWorkflowTaskLink |
removeByA_A_D_W(long appBuilderAppId,
long appBuilderAppVersionId,
long ddmStructureLayoutId,
java.lang.String workflowTaskName)
Removes the app builder workflow task link where appBuilderAppId = ? and appBuilderAppVersionId = ? and ddmStructureLayoutId = ? and workflowTaskName = ? from the database.
|
static void |
removeByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName)
Removes all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? and workflowTaskName = ? from the database.
|
static void |
removeByA_A(long appBuilderAppId,
long appBuilderAppVersionId)
Removes all the app builder workflow task links where appBuilderAppId = ? and appBuilderAppVersionId = ? from the database.
|
static void |
removeByAppBuilderAppId(long appBuilderAppId)
Removes all the app builder workflow task links where appBuilderAppId = ? from the database.
|
static void |
setPersistence(AppBuilderWorkflowTaskLinkPersistence persistence) |
static AppBuilderWorkflowTaskLink |
update(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink) |
static AppBuilderWorkflowTaskLink |
update(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
static AppBuilderWorkflowTaskLink |
updateImpl(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink)
BasePersistence.clearCache(com.liferay.portal.kernel.model.BaseModel)public static long countWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.Map<java.io.Serializable,AppBuilderWorkflowTaskLink> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
BasePersistence.fetchByPrimaryKeys(Set)public static java.util.List<AppBuilderWorkflowTaskLink> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
BasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<AppBuilderWorkflowTaskLink> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)public static java.util.List<AppBuilderWorkflowTaskLink> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)public static AppBuilderWorkflowTaskLink update(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel)public static AppBuilderWorkflowTaskLink update(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink, com.liferay.portal.kernel.service.ServiceContext serviceContext)
BasePersistence.update(com.liferay.portal.kernel.model.BaseModel, ServiceContext)public static java.util.List<AppBuilderWorkflowTaskLink> findByAppBuilderAppId(long appBuilderAppId)
appBuilderAppId - the app builder app IDpublic static java.util.List<AppBuilderWorkflowTaskLink> findByAppBuilderAppId(long appBuilderAppId, int start, int end)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDstart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)public static java.util.List<AppBuilderWorkflowTaskLink> findByAppBuilderAppId(long appBuilderAppId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDstart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static java.util.List<AppBuilderWorkflowTaskLink> findByAppBuilderAppId(long appBuilderAppId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDstart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)useFinderCache - whether to use the finder cachepublic static AppBuilderWorkflowTaskLink findByAppBuilderAppId_First(long appBuilderAppId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByAppBuilderAppId_First(long appBuilderAppId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
appBuilderAppId - the app builder app IDorderByComparator - the comparator to order the set by (optionally null)null if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink findByAppBuilderAppId_Last(long appBuilderAppId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByAppBuilderAppId_Last(long appBuilderAppId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
appBuilderAppId - the app builder app IDorderByComparator - the comparator to order the set by (optionally null)null if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink[] findByAppBuilderAppId_PrevAndNext(long appBuilderWorkflowTaskLinkId, long appBuilderAppId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderWorkflowTaskLinkId - the primary key of the current app builder workflow task linkappBuilderAppId - the app builder app IDorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a app builder workflow task link with the primary key could not be foundpublic static void removeByAppBuilderAppId(long appBuilderAppId)
appBuilderAppId - the app builder app IDpublic static int countByAppBuilderAppId(long appBuilderAppId)
appBuilderAppId - the app builder app IDpublic static java.util.List<AppBuilderWorkflowTaskLink> findByA_A(long appBuilderAppId, long appBuilderAppVersionId)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDpublic static java.util.List<AppBuilderWorkflowTaskLink> findByA_A(long appBuilderAppId, long appBuilderAppVersionId, int start, int end)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDstart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)public static java.util.List<AppBuilderWorkflowTaskLink> findByA_A(long appBuilderAppId, long appBuilderAppVersionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDstart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static java.util.List<AppBuilderWorkflowTaskLink> findByA_A(long appBuilderAppId, long appBuilderAppVersionId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDstart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)useFinderCache - whether to use the finder cachepublic static AppBuilderWorkflowTaskLink findByA_A_First(long appBuilderAppId, long appBuilderAppVersionId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByA_A_First(long appBuilderAppId, long appBuilderAppVersionId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDorderByComparator - the comparator to order the set by (optionally null)null if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink findByA_A_Last(long appBuilderAppId, long appBuilderAppVersionId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByA_A_Last(long appBuilderAppId, long appBuilderAppVersionId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDorderByComparator - the comparator to order the set by (optionally null)null if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink[] findByA_A_PrevAndNext(long appBuilderWorkflowTaskLinkId, long appBuilderAppId, long appBuilderAppVersionId, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderWorkflowTaskLinkId - the primary key of the current app builder workflow task linkappBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a app builder workflow task link with the primary key could not be foundpublic static void removeByA_A(long appBuilderAppId,
long appBuilderAppVersionId)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDpublic static int countByA_A(long appBuilderAppId,
long appBuilderAppVersionId)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDpublic static java.util.List<AppBuilderWorkflowTaskLink> findByA_A_W(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task namepublic static java.util.List<AppBuilderWorkflowTaskLink> findByA_A_W(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, int start, int end)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task namestart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)public static java.util.List<AppBuilderWorkflowTaskLink> findByA_A_W(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task namestart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static java.util.List<AppBuilderWorkflowTaskLink> findByA_A_W(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task namestart - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)useFinderCache - whether to use the finder cachepublic static AppBuilderWorkflowTaskLink findByA_A_W_First(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task nameorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByA_A_W_First(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task nameorderByComparator - the comparator to order the set by (optionally null)null if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink findByA_A_W_Last(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task nameorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByA_A_W_Last(long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task nameorderByComparator - the comparator to order the set by (optionally null)null if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink[] findByA_A_W_PrevAndNext(long appBuilderWorkflowTaskLinkId, long appBuilderAppId, long appBuilderAppVersionId, java.lang.String workflowTaskName, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator) throws NoSuchTaskLinkException
appBuilderWorkflowTaskLinkId - the primary key of the current app builder workflow task linkappBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task nameorderByComparator - the comparator to order the set by (optionally null)NoSuchTaskLinkException - if a app builder workflow task link with the primary key could not be foundpublic static void removeByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task namepublic static int countByA_A_W(long appBuilderAppId,
long appBuilderAppVersionId,
java.lang.String workflowTaskName)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDworkflowTaskName - the workflow task namepublic static AppBuilderWorkflowTaskLink findByA_A_D_W(long appBuilderAppId, long appBuilderAppVersionId, long ddmStructureLayoutId, java.lang.String workflowTaskName) throws NoSuchTaskLinkException
NoSuchTaskLinkException if it could not be found.appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDddmStructureLayoutId - the ddm structure layout IDworkflowTaskName - the workflow task nameNoSuchTaskLinkException - if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByA_A_D_W(long appBuilderAppId, long appBuilderAppVersionId, long ddmStructureLayoutId, java.lang.String workflowTaskName)
null if it could not be found. Uses the finder cache.appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDddmStructureLayoutId - the ddm structure layout IDworkflowTaskName - the workflow task namenull if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink fetchByA_A_D_W(long appBuilderAppId, long appBuilderAppVersionId, long ddmStructureLayoutId, java.lang.String workflowTaskName, boolean useFinderCache)
null if it could not be found, optionally using the finder cache.appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDddmStructureLayoutId - the ddm structure layout IDworkflowTaskName - the workflow task nameuseFinderCache - whether to use the finder cachenull if a matching app builder workflow task link could not be foundpublic static AppBuilderWorkflowTaskLink removeByA_A_D_W(long appBuilderAppId, long appBuilderAppVersionId, long ddmStructureLayoutId, java.lang.String workflowTaskName) throws NoSuchTaskLinkException
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDddmStructureLayoutId - the ddm structure layout IDworkflowTaskName - the workflow task nameNoSuchTaskLinkExceptionpublic static int countByA_A_D_W(long appBuilderAppId,
long appBuilderAppVersionId,
long ddmStructureLayoutId,
java.lang.String workflowTaskName)
appBuilderAppId - the app builder app IDappBuilderAppVersionId - the app builder app version IDddmStructureLayoutId - the ddm structure layout IDworkflowTaskName - the workflow task namepublic static void cacheResult(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink)
appBuilderWorkflowTaskLink - the app builder workflow task linkpublic static void cacheResult(java.util.List<AppBuilderWorkflowTaskLink> appBuilderWorkflowTaskLinks)
appBuilderWorkflowTaskLinks - the app builder workflow task linkspublic static AppBuilderWorkflowTaskLink create(long appBuilderWorkflowTaskLinkId)
appBuilderWorkflowTaskLinkId - the primary key for the new app builder workflow task linkpublic static AppBuilderWorkflowTaskLink remove(long appBuilderWorkflowTaskLinkId) throws NoSuchTaskLinkException
appBuilderWorkflowTaskLinkId - the primary key of the app builder workflow task linkNoSuchTaskLinkException - if a app builder workflow task link with the primary key could not be foundpublic static AppBuilderWorkflowTaskLink updateImpl(AppBuilderWorkflowTaskLink appBuilderWorkflowTaskLink)
public static AppBuilderWorkflowTaskLink findByPrimaryKey(long appBuilderWorkflowTaskLinkId) throws NoSuchTaskLinkException
NoSuchTaskLinkException if it could not be found.appBuilderWorkflowTaskLinkId - the primary key of the app builder workflow task linkNoSuchTaskLinkException - if a app builder workflow task link with the primary key could not be foundpublic static AppBuilderWorkflowTaskLink fetchByPrimaryKey(long appBuilderWorkflowTaskLinkId)
null if it could not be found.appBuilderWorkflowTaskLinkId - the primary key of the app builder workflow task linknull if a app builder workflow task link with the primary key could not be foundpublic static java.util.List<AppBuilderWorkflowTaskLink> findAll()
public static java.util.List<AppBuilderWorkflowTaskLink> findAll(int start, int end)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
start - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)public static java.util.List<AppBuilderWorkflowTaskLink> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
start - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static java.util.List<AppBuilderWorkflowTaskLink> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AppBuilderWorkflowTaskLink> orderByComparator, boolean useFinderCache)
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, then the query will include the default ORDER BY logic from AppBuilderWorkflowTaskLinkModelImpl.
start - the lower bound of the range of app builder workflow task linksend - the upper bound of the range of app builder workflow task links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)useFinderCache - whether to use the finder cachepublic static void removeAll()
public static int countAll()
public static AppBuilderWorkflowTaskLinkPersistence getPersistence()
public static void setPersistence(AppBuilderWorkflowTaskLinkPersistence persistence)