|
Liferay 7.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.persistence.WorkflowInstanceLinkUtil
@ProviderType public class WorkflowInstanceLinkUtil
The persistence utility for the workflow instance link service. This utility wraps WorkflowInstanceLinkPersistenceImpl 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
WorkflowInstanceLinkPersistence,
WorkflowInstanceLinkPersistenceImpl| Constructor Summary | |
|---|---|
WorkflowInstanceLinkUtil()
|
|
| Method Summary | |
|---|---|
static void |
cacheResult(List<WorkflowInstanceLink> workflowInstanceLinks)
Caches the workflow instance links in the entity cache if it is enabled. |
static void |
cacheResult(WorkflowInstanceLink workflowInstanceLink)
Caches the workflow instance link in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(WorkflowInstanceLink workflowInstanceLink)
|
static int |
countAll()
Returns the number of workflow instance links. |
static int |
countByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK)
Returns the number of workflow instance links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static WorkflowInstanceLink |
create(long workflowInstanceLinkId)
Creates a new workflow instance link with the primary key. |
static WorkflowInstanceLink |
fetchByG_C_C_C_First(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns the first workflow instance link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static WorkflowInstanceLink |
fetchByG_C_C_C_Last(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns the last workflow instance link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static WorkflowInstanceLink |
fetchByPrimaryKey(long workflowInstanceLinkId)
Returns the workflow instance link with the primary key or returns null if it could not be found. |
static Map<Serializable,WorkflowInstanceLink> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys)
|
static List<WorkflowInstanceLink> |
findAll()
Returns all the workflow instance links. |
static List<WorkflowInstanceLink> |
findAll(int start,
int end)
Returns a range of all the workflow instance links. |
static List<WorkflowInstanceLink> |
findAll(int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns an ordered range of all the workflow instance links. |
static List<WorkflowInstanceLink> |
findAll(int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the workflow instance links. |
static WorkflowInstanceLink |
findByG_C_C_C_First(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns the first workflow instance link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static WorkflowInstanceLink |
findByG_C_C_C_Last(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns the last workflow instance link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static WorkflowInstanceLink[] |
findByG_C_C_C_PrevAndNext(long workflowInstanceLinkId,
long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns the workflow instance links before and after the current workflow instance link in the ordered set where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static List<WorkflowInstanceLink> |
findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK)
Returns all the workflow instance links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static List<WorkflowInstanceLink> |
findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK,
int start,
int end)
Returns a range of all the workflow instance links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static List<WorkflowInstanceLink> |
findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK,
int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
Returns an ordered range of all the workflow instance links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static List<WorkflowInstanceLink> |
findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK,
int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the workflow instance links where groupId = ? and companyId = ? and classNameId = ? and classPK = ?. |
static WorkflowInstanceLink |
findByPrimaryKey(long workflowInstanceLinkId)
Returns the workflow instance link with the primary key or throws a NoSuchWorkflowInstanceLinkException if it could not be found. |
static List<WorkflowInstanceLink> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<WorkflowInstanceLink> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<WorkflowInstanceLink> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
|
static WorkflowInstanceLinkPersistence |
getPersistence()
|
static WorkflowInstanceLink |
remove(long workflowInstanceLinkId)
Removes the workflow instance link with the primary key from the database. |
static void |
removeAll()
Removes all the workflow instance links from the database. |
static void |
removeByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK)
Removes all the workflow instance links where groupId = ? and companyId = ? and classNameId = ? and classPK = ? from the database. |
static WorkflowInstanceLink |
update(WorkflowInstanceLink workflowInstanceLink)
|
static WorkflowInstanceLink |
update(WorkflowInstanceLink workflowInstanceLink,
ServiceContext serviceContext)
|
static WorkflowInstanceLink |
updateImpl(WorkflowInstanceLink workflowInstanceLink)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public WorkflowInstanceLinkUtil()
| Method Detail |
|---|
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(WorkflowInstanceLink workflowInstanceLink)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
BasePersistence.countWithDynamicQuery(DynamicQuery)public static List<WorkflowInstanceLink> findWithDynamicQuery(DynamicQuery dynamicQuery)
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<WorkflowInstanceLink> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<WorkflowInstanceLink> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)public static WorkflowInstanceLink update(WorkflowInstanceLink workflowInstanceLink)
BasePersistence.update(com.liferay.portal.model.BaseModel)
public static WorkflowInstanceLink update(WorkflowInstanceLink workflowInstanceLink,
ServiceContext serviceContext)
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)
public static List<WorkflowInstanceLink> findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK)
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p k
public static List<WorkflowInstanceLink> findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK,
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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowInstanceLinkModelImpl. 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.
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p kstart - the lower bound of the range of workflow instance linksend - the upper bound of the range of workflow instance links (not inclusive)
public static List<WorkflowInstanceLink> findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK,
int start,
int end,
OrderByComparator<WorkflowInstanceLink> 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowInstanceLinkModelImpl. 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.
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p kstart - the lower bound of the range of workflow instance linksend - the upper bound of the range of workflow instance links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
public static List<WorkflowInstanceLink> findByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK,
int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator,
boolean retrieveFromCache)
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 WorkflowInstanceLinkModelImpl. 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.
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p kstart - the lower bound of the range of workflow instance linksend - the upper bound of the range of workflow instance links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)retrieveFromCache - whether to retrieve from the finder cache
public static WorkflowInstanceLink findByG_C_C_C_First(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
throws NoSuchWorkflowInstanceLinkException
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p korderByComparator - the comparator to order the set by (optionally null)
NoSuchWorkflowInstanceLinkException - if a matching workflow instance link could not be found
public static WorkflowInstanceLink fetchByG_C_C_C_First(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p korderByComparator - the comparator to order the set by (optionally null)
null if a matching workflow instance link could not be found
public static WorkflowInstanceLink findByG_C_C_C_Last(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
throws NoSuchWorkflowInstanceLinkException
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p korderByComparator - the comparator to order the set by (optionally null)
NoSuchWorkflowInstanceLinkException - if a matching workflow instance link could not be found
public static WorkflowInstanceLink fetchByG_C_C_C_Last(long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p korderByComparator - the comparator to order the set by (optionally null)
null if a matching workflow instance link could not be found
public static WorkflowInstanceLink[] findByG_C_C_C_PrevAndNext(long workflowInstanceLinkId,
long groupId,
long companyId,
long classNameId,
long classPK,
OrderByComparator<WorkflowInstanceLink> orderByComparator)
throws NoSuchWorkflowInstanceLinkException
workflowInstanceLinkId - the primary key of the current workflow instance linkgroupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p korderByComparator - the comparator to order the set by (optionally null)
NoSuchWorkflowInstanceLinkException - if a workflow instance link with the primary key could not be found
public static void removeByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK)
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p k
public static int countByG_C_C_C(long groupId,
long companyId,
long classNameId,
long classPK)
groupId - the group IDcompanyId - the company IDclassNameId - the class name IDclassPK - the class p k
public static void cacheResult(WorkflowInstanceLink workflowInstanceLink)
workflowInstanceLink - the workflow instance linkpublic static void cacheResult(List<WorkflowInstanceLink> workflowInstanceLinks)
workflowInstanceLinks - the workflow instance linkspublic static WorkflowInstanceLink create(long workflowInstanceLinkId)
workflowInstanceLinkId - the primary key for the new workflow instance link
public static WorkflowInstanceLink remove(long workflowInstanceLinkId)
throws NoSuchWorkflowInstanceLinkException
workflowInstanceLinkId - the primary key of the workflow instance link
NoSuchWorkflowInstanceLinkException - if a workflow instance link with the primary key could not be foundpublic static WorkflowInstanceLink updateImpl(WorkflowInstanceLink workflowInstanceLink)
public static WorkflowInstanceLink findByPrimaryKey(long workflowInstanceLinkId)
throws NoSuchWorkflowInstanceLinkException
NoSuchWorkflowInstanceLinkException if it could not be found.
workflowInstanceLinkId - the primary key of the workflow instance link
NoSuchWorkflowInstanceLinkException - if a workflow instance link with the primary key could not be foundpublic static WorkflowInstanceLink fetchByPrimaryKey(long workflowInstanceLinkId)
null if it could not be found.
workflowInstanceLinkId - the primary key of the workflow instance link
null if a workflow instance link with the primary key could not be foundpublic static Map<Serializable,WorkflowInstanceLink> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<WorkflowInstanceLink> findAll()
public static List<WorkflowInstanceLink> 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowInstanceLinkModelImpl. 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.
start - the lower bound of the range of workflow instance linksend - the upper bound of the range of workflow instance links (not inclusive)
public static List<WorkflowInstanceLink> findAll(int start,
int end,
OrderByComparator<WorkflowInstanceLink> 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 and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from WorkflowInstanceLinkModelImpl. 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.
start - the lower bound of the range of workflow instance linksend - the upper bound of the range of workflow instance links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
public static List<WorkflowInstanceLink> findAll(int start,
int end,
OrderByComparator<WorkflowInstanceLink> orderByComparator,
boolean retrieveFromCache)
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 WorkflowInstanceLinkModelImpl. 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.
start - the lower bound of the range of workflow instance linksend - the upper bound of the range of workflow instance links (not inclusive)orderByComparator - the comparator to order the results by (optionally null)retrieveFromCache - whether to retrieve from the finder cache
public static void removeAll()
public static int countAll()
public static WorkflowInstanceLinkPersistence getPersistence()
|
Liferay 7.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||