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

com.liferay.change.tracking.service.persistence.impl.CTProcessPersistenceImpl Maven / Gradle / Ivy

There is a newer version: 3.0.107
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.change.tracking.service.persistence.impl;

import com.liferay.change.tracking.exception.NoSuchProcessException;
import com.liferay.change.tracking.model.CTProcess;
import com.liferay.change.tracking.model.CTProcessTable;
import com.liferay.change.tracking.model.impl.CTProcessImpl;
import com.liferay.change.tracking.model.impl.CTProcessModelImpl;
import com.liferay.change.tracking.service.persistence.CTProcessPersistence;
import com.liferay.change.tracking.service.persistence.CTProcessUtil;
import com.liferay.change.tracking.service.persistence.impl.constants.CTPersistenceConstants;
import com.liferay.petra.string.StringBundler;
import com.liferay.portal.kernel.configuration.Configuration;
import com.liferay.portal.kernel.dao.orm.EntityCache;
import com.liferay.portal.kernel.dao.orm.FinderCache;
import com.liferay.portal.kernel.dao.orm.FinderPath;
import com.liferay.portal.kernel.dao.orm.Query;
import com.liferay.portal.kernel.dao.orm.QueryPos;
import com.liferay.portal.kernel.dao.orm.QueryUtil;
import com.liferay.portal.kernel.dao.orm.Session;
import com.liferay.portal.kernel.dao.orm.SessionFactory;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.security.auth.CompanyThreadLocal;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.service.ServiceContextThreadLocal;
import com.liferay.portal.kernel.service.persistence.impl.BasePersistenceImpl;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.OrderByComparator;
import com.liferay.portal.kernel.util.PropsKeys;
import com.liferay.portal.kernel.util.PropsUtil;
import com.liferay.portal.kernel.util.ProxyUtil;
import com.liferay.portal.kernel.util.SetUtil;

import java.io.Serializable;

import java.lang.reflect.InvocationHandler;

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

import javax.sql.DataSource;

import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;

/**
 * The persistence implementation for the ct process service.
 *
 * 

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

* * @author Brian Wing Shun Chan * @generated */ @Component(service = CTProcessPersistence.class) public class CTProcessPersistenceImpl extends BasePersistenceImpl implements CTProcessPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use CTProcessUtil to access the ct process persistence. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = CTProcessImpl.class.getName(); public static final String FINDER_CLASS_NAME_LIST_WITH_PAGINATION = FINDER_CLASS_NAME_ENTITY + ".List1"; public static final String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION = FINDER_CLASS_NAME_ENTITY + ".List2"; private FinderPath _finderPathWithPaginationFindAll; private FinderPath _finderPathWithoutPaginationFindAll; private FinderPath _finderPathCountAll; private FinderPath _finderPathWithPaginationFindByCompanyId; private FinderPath _finderPathWithoutPaginationFindByCompanyId; private FinderPath _finderPathCountByCompanyId; /** * Returns all the ct processes where companyId = ?. * * @param companyId the company ID * @return the matching ct processes */ @Override public List findByCompanyId(long companyId) { return findByCompanyId( companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the ct processes 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, then the query will include the default ORDER BY logic from CTProcessModelImpl. *

* * @param companyId the company ID * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @return the range of matching ct processes */ @Override public List findByCompanyId(long companyId, int start, int end) { return findByCompanyId(companyId, start, end, null); } /** * Returns an ordered range of all the ct processes 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, then the query will include the default ORDER BY logic from CTProcessModelImpl. *

* * @param companyId the company ID * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching ct processes */ @Override public List findByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator) { return findByCompanyId(companyId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the ct processes 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, then the query will include the default ORDER BY logic from CTProcessModelImpl. *

* * @param companyId the company ID * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching ct processes */ @Override public List findByCompanyId( long companyId, int start, int end, OrderByComparator orderByComparator, boolean useFinderCache) { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { if (useFinderCache) { finderPath = _finderPathWithoutPaginationFindByCompanyId; finderArgs = new Object[] {companyId}; } } else if (useFinderCache) { finderPath = _finderPathWithPaginationFindByCompanyId; finderArgs = new Object[] { companyId, start, end, orderByComparator }; } List list = null; if (useFinderCache) { list = (List)finderCache.getResult( finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (CTProcess ctProcess : list) { if (companyId != ctProcess.getCompanyId()) { list = null; break; } } } } if (list == null) { StringBundler sb = null; if (orderByComparator != null) { sb = new StringBundler( 3 + (orderByComparator.getOrderByFields().length * 2)); } else { sb = new StringBundler(3); } sb.append(_SQL_SELECT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_COMPANYID_COMPANYID_2); if (orderByComparator != null) { appendOrderByComparator( sb, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { sb.append(CTProcessModelImpl.ORDER_BY_JPQL); } String sql = sb.toString(); Session session = null; try { session = openSession(); Query query = session.createQuery(sql); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(companyId); list = (List)QueryUtil.list( query, getDialect(), start, end); cacheResult(list); if (useFinderCache) { finderCache.putResult(finderPath, finderArgs, list); } } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return list; } /** * Returns the first ct process 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 ct process * @throws NoSuchProcessException if a matching ct process could not be found */ @Override public CTProcess findByCompanyId_First( long companyId, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = fetchByCompanyId_First( companyId, orderByComparator); if (ctProcess != null) { return ctProcess; } StringBundler sb = new StringBundler(4); sb.append(_NO_SUCH_ENTITY_WITH_KEY); sb.append("companyId="); sb.append(companyId); sb.append("}"); throw new NoSuchProcessException(sb.toString()); } /** * Returns the first ct process 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 ct process, or null if a matching ct process could not be found */ @Override public CTProcess fetchByCompanyId_First( long companyId, OrderByComparator orderByComparator) { List list = findByCompanyId( companyId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last ct process 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 ct process * @throws NoSuchProcessException if a matching ct process could not be found */ @Override public CTProcess findByCompanyId_Last( long companyId, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = fetchByCompanyId_Last( companyId, orderByComparator); if (ctProcess != null) { return ctProcess; } StringBundler sb = new StringBundler(4); sb.append(_NO_SUCH_ENTITY_WITH_KEY); sb.append("companyId="); sb.append(companyId); sb.append("}"); throw new NoSuchProcessException(sb.toString()); } /** * Returns the last ct process 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 ct process, or null if a matching ct process could not be found */ @Override public CTProcess fetchByCompanyId_Last( long companyId, OrderByComparator orderByComparator) { int count = countByCompanyId(companyId); if (count == 0) { return null; } List list = findByCompanyId( companyId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the ct processes before and after the current ct process in the ordered set where companyId = ?. * * @param ctProcessId the primary key of the current ct process * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next ct process * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess[] findByCompanyId_PrevAndNext( long ctProcessId, long companyId, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = findByPrimaryKey(ctProcessId); Session session = null; try { session = openSession(); CTProcess[] array = new CTProcessImpl[3]; array[0] = getByCompanyId_PrevAndNext( session, ctProcess, companyId, orderByComparator, true); array[1] = ctProcess; array[2] = getByCompanyId_PrevAndNext( session, ctProcess, companyId, orderByComparator, false); return array; } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } protected CTProcess getByCompanyId_PrevAndNext( Session session, CTProcess ctProcess, long companyId, OrderByComparator orderByComparator, boolean previous) { StringBundler sb = null; if (orderByComparator != null) { sb = new StringBundler( 4 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { sb = new StringBundler(3); } sb.append(_SQL_SELECT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_COMPANYID_COMPANYID_2); if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { sb.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { sb.append(_ORDER_BY_ENTITY_ALIAS); sb.append(orderByConditionFields[i]); if ((i + 1) < orderByConditionFields.length) { if (orderByComparator.isAscending() ^ previous) { sb.append(WHERE_GREATER_THAN_HAS_NEXT); } else { sb.append(WHERE_LESSER_THAN_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { sb.append(WHERE_GREATER_THAN); } else { sb.append(WHERE_LESSER_THAN); } } } sb.append(ORDER_BY_CLAUSE); String[] orderByFields = orderByComparator.getOrderByFields(); for (int i = 0; i < orderByFields.length; i++) { sb.append(_ORDER_BY_ENTITY_ALIAS); sb.append(orderByFields[i]); if ((i + 1) < orderByFields.length) { if (orderByComparator.isAscending() ^ previous) { sb.append(ORDER_BY_ASC_HAS_NEXT); } else { sb.append(ORDER_BY_DESC_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { sb.append(ORDER_BY_ASC); } else { sb.append(ORDER_BY_DESC); } } } } else { sb.append(CTProcessModelImpl.ORDER_BY_JPQL); } String sql = sb.toString(); Query query = session.createQuery(sql); query.setFirstResult(0); query.setMaxResults(2); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(companyId); if (orderByComparator != null) { for (Object orderByConditionValue : orderByComparator.getOrderByConditionValues(ctProcess)) { queryPos.add(orderByConditionValue); } } List list = query.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the ct processes where companyId = ? from the database. * * @param companyId the company ID */ @Override public void removeByCompanyId(long companyId) { for (CTProcess ctProcess : findByCompanyId( companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(ctProcess); } } /** * Returns the number of ct processes where companyId = ?. * * @param companyId the company ID * @return the number of matching ct processes */ @Override public int countByCompanyId(long companyId) { FinderPath finderPath = _finderPathCountByCompanyId; Object[] finderArgs = new Object[] {companyId}; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler sb = new StringBundler(2); sb.append(_SQL_COUNT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_COMPANYID_COMPANYID_2); String sql = sb.toString(); Session session = null; try { session = openSession(); Query query = session.createQuery(sql); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(companyId); count = (Long)query.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_COMPANYID_COMPANYID_2 = "ctProcess.companyId = ?"; private FinderPath _finderPathWithPaginationFindByCtCollectionId; private FinderPath _finderPathWithoutPaginationFindByCtCollectionId; private FinderPath _finderPathCountByCtCollectionId; /** * Returns all the ct processes where ctCollectionId = ?. * * @param ctCollectionId the ct collection ID * @return the matching ct processes */ @Override public List findByCtCollectionId(long ctCollectionId) { return findByCtCollectionId( ctCollectionId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the ct processes where ctCollectionId = ?. * *

* 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 CTProcessModelImpl. *

* * @param ctCollectionId the ct collection ID * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @return the range of matching ct processes */ @Override public List findByCtCollectionId( long ctCollectionId, int start, int end) { return findByCtCollectionId(ctCollectionId, start, end, null); } /** * Returns an ordered range of all the ct processes where ctCollectionId = ?. * *

* 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 CTProcessModelImpl. *

* * @param ctCollectionId the ct collection ID * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching ct processes */ @Override public List findByCtCollectionId( long ctCollectionId, int start, int end, OrderByComparator orderByComparator) { return findByCtCollectionId( ctCollectionId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the ct processes where ctCollectionId = ?. * *

* 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 CTProcessModelImpl. *

* * @param ctCollectionId the ct collection ID * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching ct processes */ @Override public List findByCtCollectionId( long ctCollectionId, int start, int end, OrderByComparator orderByComparator, boolean useFinderCache) { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { if (useFinderCache) { finderPath = _finderPathWithoutPaginationFindByCtCollectionId; finderArgs = new Object[] {ctCollectionId}; } } else if (useFinderCache) { finderPath = _finderPathWithPaginationFindByCtCollectionId; finderArgs = new Object[] { ctCollectionId, start, end, orderByComparator }; } List list = null; if (useFinderCache) { list = (List)finderCache.getResult( finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (CTProcess ctProcess : list) { if (ctCollectionId != ctProcess.getCtCollectionId()) { list = null; break; } } } } if (list == null) { StringBundler sb = null; if (orderByComparator != null) { sb = new StringBundler( 3 + (orderByComparator.getOrderByFields().length * 2)); } else { sb = new StringBundler(3); } sb.append(_SQL_SELECT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_CTCOLLECTIONID_CTCOLLECTIONID_2); if (orderByComparator != null) { appendOrderByComparator( sb, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { sb.append(CTProcessModelImpl.ORDER_BY_JPQL); } String sql = sb.toString(); Session session = null; try { session = openSession(); Query query = session.createQuery(sql); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(ctCollectionId); list = (List)QueryUtil.list( query, getDialect(), start, end); cacheResult(list); if (useFinderCache) { finderCache.putResult(finderPath, finderArgs, list); } } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return list; } /** * Returns the first ct process in the ordered set where ctCollectionId = ?. * * @param ctCollectionId the ct collection ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching ct process * @throws NoSuchProcessException if a matching ct process could not be found */ @Override public CTProcess findByCtCollectionId_First( long ctCollectionId, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = fetchByCtCollectionId_First( ctCollectionId, orderByComparator); if (ctProcess != null) { return ctProcess; } StringBundler sb = new StringBundler(4); sb.append(_NO_SUCH_ENTITY_WITH_KEY); sb.append("ctCollectionId="); sb.append(ctCollectionId); sb.append("}"); throw new NoSuchProcessException(sb.toString()); } /** * Returns the first ct process in the ordered set where ctCollectionId = ?. * * @param ctCollectionId the ct collection ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching ct process, or null if a matching ct process could not be found */ @Override public CTProcess fetchByCtCollectionId_First( long ctCollectionId, OrderByComparator orderByComparator) { List list = findByCtCollectionId( ctCollectionId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last ct process in the ordered set where ctCollectionId = ?. * * @param ctCollectionId the ct collection ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching ct process * @throws NoSuchProcessException if a matching ct process could not be found */ @Override public CTProcess findByCtCollectionId_Last( long ctCollectionId, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = fetchByCtCollectionId_Last( ctCollectionId, orderByComparator); if (ctProcess != null) { return ctProcess; } StringBundler sb = new StringBundler(4); sb.append(_NO_SUCH_ENTITY_WITH_KEY); sb.append("ctCollectionId="); sb.append(ctCollectionId); sb.append("}"); throw new NoSuchProcessException(sb.toString()); } /** * Returns the last ct process in the ordered set where ctCollectionId = ?. * * @param ctCollectionId the ct collection ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching ct process, or null if a matching ct process could not be found */ @Override public CTProcess fetchByCtCollectionId_Last( long ctCollectionId, OrderByComparator orderByComparator) { int count = countByCtCollectionId(ctCollectionId); if (count == 0) { return null; } List list = findByCtCollectionId( ctCollectionId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the ct processes before and after the current ct process in the ordered set where ctCollectionId = ?. * * @param ctProcessId the primary key of the current ct process * @param ctCollectionId the ct collection ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next ct process * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess[] findByCtCollectionId_PrevAndNext( long ctProcessId, long ctCollectionId, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = findByPrimaryKey(ctProcessId); Session session = null; try { session = openSession(); CTProcess[] array = new CTProcessImpl[3]; array[0] = getByCtCollectionId_PrevAndNext( session, ctProcess, ctCollectionId, orderByComparator, true); array[1] = ctProcess; array[2] = getByCtCollectionId_PrevAndNext( session, ctProcess, ctCollectionId, orderByComparator, false); return array; } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } protected CTProcess getByCtCollectionId_PrevAndNext( Session session, CTProcess ctProcess, long ctCollectionId, OrderByComparator orderByComparator, boolean previous) { StringBundler sb = null; if (orderByComparator != null) { sb = new StringBundler( 4 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { sb = new StringBundler(3); } sb.append(_SQL_SELECT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_CTCOLLECTIONID_CTCOLLECTIONID_2); if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { sb.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { sb.append(_ORDER_BY_ENTITY_ALIAS); sb.append(orderByConditionFields[i]); if ((i + 1) < orderByConditionFields.length) { if (orderByComparator.isAscending() ^ previous) { sb.append(WHERE_GREATER_THAN_HAS_NEXT); } else { sb.append(WHERE_LESSER_THAN_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { sb.append(WHERE_GREATER_THAN); } else { sb.append(WHERE_LESSER_THAN); } } } sb.append(ORDER_BY_CLAUSE); String[] orderByFields = orderByComparator.getOrderByFields(); for (int i = 0; i < orderByFields.length; i++) { sb.append(_ORDER_BY_ENTITY_ALIAS); sb.append(orderByFields[i]); if ((i + 1) < orderByFields.length) { if (orderByComparator.isAscending() ^ previous) { sb.append(ORDER_BY_ASC_HAS_NEXT); } else { sb.append(ORDER_BY_DESC_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { sb.append(ORDER_BY_ASC); } else { sb.append(ORDER_BY_DESC); } } } } else { sb.append(CTProcessModelImpl.ORDER_BY_JPQL); } String sql = sb.toString(); Query query = session.createQuery(sql); query.setFirstResult(0); query.setMaxResults(2); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(ctCollectionId); if (orderByComparator != null) { for (Object orderByConditionValue : orderByComparator.getOrderByConditionValues(ctProcess)) { queryPos.add(orderByConditionValue); } } List list = query.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the ct processes where ctCollectionId = ? from the database. * * @param ctCollectionId the ct collection ID */ @Override public void removeByCtCollectionId(long ctCollectionId) { for (CTProcess ctProcess : findByCtCollectionId( ctCollectionId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(ctProcess); } } /** * Returns the number of ct processes where ctCollectionId = ?. * * @param ctCollectionId the ct collection ID * @return the number of matching ct processes */ @Override public int countByCtCollectionId(long ctCollectionId) { FinderPath finderPath = _finderPathCountByCtCollectionId; Object[] finderArgs = new Object[] {ctCollectionId}; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler sb = new StringBundler(2); sb.append(_SQL_COUNT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_CTCOLLECTIONID_CTCOLLECTIONID_2); String sql = sb.toString(); Session session = null; try { session = openSession(); Query query = session.createQuery(sql); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(ctCollectionId); count = (Long)query.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_CTCOLLECTIONID_CTCOLLECTIONID_2 = "ctProcess.ctCollectionId = ?"; private FinderPath _finderPathWithPaginationFindByC_T; private FinderPath _finderPathWithoutPaginationFindByC_T; private FinderPath _finderPathCountByC_T; /** * Returns all the ct processes where ctCollectionId = ? and type = ?. * * @param ctCollectionId the ct collection ID * @param type the type * @return the matching ct processes */ @Override public List findByC_T(long ctCollectionId, int type) { return findByC_T( ctCollectionId, type, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the ct processes where ctCollectionId = ? and type = ?. * *

* 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 CTProcessModelImpl. *

* * @param ctCollectionId the ct collection ID * @param type the type * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @return the range of matching ct processes */ @Override public List findByC_T( long ctCollectionId, int type, int start, int end) { return findByC_T(ctCollectionId, type, start, end, null); } /** * Returns an ordered range of all the ct processes where ctCollectionId = ? and type = ?. * *

* 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 CTProcessModelImpl. *

* * @param ctCollectionId the ct collection ID * @param type the type * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching ct processes */ @Override public List findByC_T( long ctCollectionId, int type, int start, int end, OrderByComparator orderByComparator) { return findByC_T( ctCollectionId, type, start, end, orderByComparator, true); } /** * Returns an ordered range of all the ct processes where ctCollectionId = ? and type = ?. * *

* 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 CTProcessModelImpl. *

* * @param ctCollectionId the ct collection ID * @param type the type * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of matching ct processes */ @Override public List findByC_T( long ctCollectionId, int type, int start, int end, OrderByComparator orderByComparator, boolean useFinderCache) { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { if (useFinderCache) { finderPath = _finderPathWithoutPaginationFindByC_T; finderArgs = new Object[] {ctCollectionId, type}; } } else if (useFinderCache) { finderPath = _finderPathWithPaginationFindByC_T; finderArgs = new Object[] { ctCollectionId, type, start, end, orderByComparator }; } List list = null; if (useFinderCache) { list = (List)finderCache.getResult( finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (CTProcess ctProcess : list) { if ((ctCollectionId != ctProcess.getCtCollectionId()) || (type != ctProcess.getType())) { list = null; break; } } } } if (list == null) { StringBundler sb = null; if (orderByComparator != null) { sb = new StringBundler( 4 + (orderByComparator.getOrderByFields().length * 2)); } else { sb = new StringBundler(4); } sb.append(_SQL_SELECT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_C_T_CTCOLLECTIONID_2); sb.append(_FINDER_COLUMN_C_T_TYPE_2); if (orderByComparator != null) { appendOrderByComparator( sb, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { sb.append(CTProcessModelImpl.ORDER_BY_JPQL); } String sql = sb.toString(); Session session = null; try { session = openSession(); Query query = session.createQuery(sql); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(ctCollectionId); queryPos.add(type); list = (List)QueryUtil.list( query, getDialect(), start, end); cacheResult(list); if (useFinderCache) { finderCache.putResult(finderPath, finderArgs, list); } } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return list; } /** * Returns the first ct process in the ordered set where ctCollectionId = ? and type = ?. * * @param ctCollectionId the ct collection ID * @param type the type * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching ct process * @throws NoSuchProcessException if a matching ct process could not be found */ @Override public CTProcess findByC_T_First( long ctCollectionId, int type, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = fetchByC_T_First( ctCollectionId, type, orderByComparator); if (ctProcess != null) { return ctProcess; } StringBundler sb = new StringBundler(6); sb.append(_NO_SUCH_ENTITY_WITH_KEY); sb.append("ctCollectionId="); sb.append(ctCollectionId); sb.append(", type="); sb.append(type); sb.append("}"); throw new NoSuchProcessException(sb.toString()); } /** * Returns the first ct process in the ordered set where ctCollectionId = ? and type = ?. * * @param ctCollectionId the ct collection ID * @param type the type * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching ct process, or null if a matching ct process could not be found */ @Override public CTProcess fetchByC_T_First( long ctCollectionId, int type, OrderByComparator orderByComparator) { List list = findByC_T( ctCollectionId, type, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last ct process in the ordered set where ctCollectionId = ? and type = ?. * * @param ctCollectionId the ct collection ID * @param type the type * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching ct process * @throws NoSuchProcessException if a matching ct process could not be found */ @Override public CTProcess findByC_T_Last( long ctCollectionId, int type, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = fetchByC_T_Last( ctCollectionId, type, orderByComparator); if (ctProcess != null) { return ctProcess; } StringBundler sb = new StringBundler(6); sb.append(_NO_SUCH_ENTITY_WITH_KEY); sb.append("ctCollectionId="); sb.append(ctCollectionId); sb.append(", type="); sb.append(type); sb.append("}"); throw new NoSuchProcessException(sb.toString()); } /** * Returns the last ct process in the ordered set where ctCollectionId = ? and type = ?. * * @param ctCollectionId the ct collection ID * @param type the type * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching ct process, or null if a matching ct process could not be found */ @Override public CTProcess fetchByC_T_Last( long ctCollectionId, int type, OrderByComparator orderByComparator) { int count = countByC_T(ctCollectionId, type); if (count == 0) { return null; } List list = findByC_T( ctCollectionId, type, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the ct processes before and after the current ct process in the ordered set where ctCollectionId = ? and type = ?. * * @param ctProcessId the primary key of the current ct process * @param ctCollectionId the ct collection ID * @param type the type * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next ct process * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess[] findByC_T_PrevAndNext( long ctProcessId, long ctCollectionId, int type, OrderByComparator orderByComparator) throws NoSuchProcessException { CTProcess ctProcess = findByPrimaryKey(ctProcessId); Session session = null; try { session = openSession(); CTProcess[] array = new CTProcessImpl[3]; array[0] = getByC_T_PrevAndNext( session, ctProcess, ctCollectionId, type, orderByComparator, true); array[1] = ctProcess; array[2] = getByC_T_PrevAndNext( session, ctProcess, ctCollectionId, type, orderByComparator, false); return array; } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } protected CTProcess getByC_T_PrevAndNext( Session session, CTProcess ctProcess, long ctCollectionId, int type, OrderByComparator orderByComparator, boolean previous) { StringBundler sb = null; if (orderByComparator != null) { sb = new StringBundler( 5 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { sb = new StringBundler(4); } sb.append(_SQL_SELECT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_C_T_CTCOLLECTIONID_2); sb.append(_FINDER_COLUMN_C_T_TYPE_2); if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { sb.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { sb.append(_ORDER_BY_ENTITY_ALIAS); sb.append(orderByConditionFields[i]); if ((i + 1) < orderByConditionFields.length) { if (orderByComparator.isAscending() ^ previous) { sb.append(WHERE_GREATER_THAN_HAS_NEXT); } else { sb.append(WHERE_LESSER_THAN_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { sb.append(WHERE_GREATER_THAN); } else { sb.append(WHERE_LESSER_THAN); } } } sb.append(ORDER_BY_CLAUSE); String[] orderByFields = orderByComparator.getOrderByFields(); for (int i = 0; i < orderByFields.length; i++) { sb.append(_ORDER_BY_ENTITY_ALIAS); sb.append(orderByFields[i]); if ((i + 1) < orderByFields.length) { if (orderByComparator.isAscending() ^ previous) { sb.append(ORDER_BY_ASC_HAS_NEXT); } else { sb.append(ORDER_BY_DESC_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { sb.append(ORDER_BY_ASC); } else { sb.append(ORDER_BY_DESC); } } } } else { sb.append(CTProcessModelImpl.ORDER_BY_JPQL); } String sql = sb.toString(); Query query = session.createQuery(sql); query.setFirstResult(0); query.setMaxResults(2); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(ctCollectionId); queryPos.add(type); if (orderByComparator != null) { for (Object orderByConditionValue : orderByComparator.getOrderByConditionValues(ctProcess)) { queryPos.add(orderByConditionValue); } } List list = query.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the ct processes where ctCollectionId = ? and type = ? from the database. * * @param ctCollectionId the ct collection ID * @param type the type */ @Override public void removeByC_T(long ctCollectionId, int type) { for (CTProcess ctProcess : findByC_T( ctCollectionId, type, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(ctProcess); } } /** * Returns the number of ct processes where ctCollectionId = ? and type = ?. * * @param ctCollectionId the ct collection ID * @param type the type * @return the number of matching ct processes */ @Override public int countByC_T(long ctCollectionId, int type) { FinderPath finderPath = _finderPathCountByC_T; Object[] finderArgs = new Object[] {ctCollectionId, type}; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler sb = new StringBundler(3); sb.append(_SQL_COUNT_CTPROCESS_WHERE); sb.append(_FINDER_COLUMN_C_T_CTCOLLECTIONID_2); sb.append(_FINDER_COLUMN_C_T_TYPE_2); String sql = sb.toString(); Session session = null; try { session = openSession(); Query query = session.createQuery(sql); QueryPos queryPos = QueryPos.getInstance(query); queryPos.add(ctCollectionId); queryPos.add(type); count = (Long)query.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_C_T_CTCOLLECTIONID_2 = "ctProcess.ctCollectionId = ? AND "; private static final String _FINDER_COLUMN_C_T_TYPE_2 = "ctProcess.type = ?"; public CTProcessPersistenceImpl() { Map dbColumnNames = new HashMap(); dbColumnNames.put("type", "type_"); setDBColumnNames(dbColumnNames); setModelClass(CTProcess.class); setModelImplClass(CTProcessImpl.class); setModelPKClass(long.class); setTable(CTProcessTable.INSTANCE); } /** * Caches the ct process in the entity cache if it is enabled. * * @param ctProcess the ct process */ @Override public void cacheResult(CTProcess ctProcess) { entityCache.putResult( CTProcessImpl.class, ctProcess.getPrimaryKey(), ctProcess); } private int _valueObjectFinderCacheListThreshold; /** * Caches the ct processes in the entity cache if it is enabled. * * @param ctProcesses the ct processes */ @Override public void cacheResult(List ctProcesses) { if ((_valueObjectFinderCacheListThreshold == 0) || ((_valueObjectFinderCacheListThreshold > 0) && (ctProcesses.size() > _valueObjectFinderCacheListThreshold))) { return; } for (CTProcess ctProcess : ctProcesses) { if (entityCache.getResult( CTProcessImpl.class, ctProcess.getPrimaryKey()) == null) { cacheResult(ctProcess); } } } /** * Clears the cache for all ct processes. * *

* The EntityCache and FinderCache are both cleared by this method. *

*/ @Override public void clearCache() { entityCache.clearCache(CTProcessImpl.class); finderCache.clearCache(CTProcessImpl.class); } /** * Clears the cache for the ct process. * *

* The EntityCache and FinderCache are both cleared by this method. *

*/ @Override public void clearCache(CTProcess ctProcess) { entityCache.removeResult(CTProcessImpl.class, ctProcess); } @Override public void clearCache(List ctProcesses) { for (CTProcess ctProcess : ctProcesses) { entityCache.removeResult(CTProcessImpl.class, ctProcess); } } @Override public void clearCache(Set primaryKeys) { finderCache.clearCache(CTProcessImpl.class); for (Serializable primaryKey : primaryKeys) { entityCache.removeResult(CTProcessImpl.class, primaryKey); } } /** * Creates a new ct process with the primary key. Does not add the ct process to the database. * * @param ctProcessId the primary key for the new ct process * @return the new ct process */ @Override public CTProcess create(long ctProcessId) { CTProcess ctProcess = new CTProcessImpl(); ctProcess.setNew(true); ctProcess.setPrimaryKey(ctProcessId); ctProcess.setCompanyId(CompanyThreadLocal.getCompanyId()); return ctProcess; } /** * Removes the ct process with the primary key from the database. Also notifies the appropriate model listeners. * * @param ctProcessId the primary key of the ct process * @return the ct process that was removed * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess remove(long ctProcessId) throws NoSuchProcessException { return remove((Serializable)ctProcessId); } /** * Removes the ct process with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the ct process * @return the ct process that was removed * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess remove(Serializable primaryKey) throws NoSuchProcessException { Session session = null; try { session = openSession(); CTProcess ctProcess = (CTProcess)session.get( CTProcessImpl.class, primaryKey); if (ctProcess == null) { if (_log.isDebugEnabled()) { _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchProcessException( _NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(ctProcess); } catch (NoSuchProcessException noSuchEntityException) { throw noSuchEntityException; } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } @Override protected CTProcess removeImpl(CTProcess ctProcess) { Session session = null; try { session = openSession(); if (!session.contains(ctProcess)) { ctProcess = (CTProcess)session.get( CTProcessImpl.class, ctProcess.getPrimaryKeyObj()); } if (ctProcess != null) { session.delete(ctProcess); } } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } if (ctProcess != null) { clearCache(ctProcess); } return ctProcess; } @Override public CTProcess updateImpl(CTProcess ctProcess) { boolean isNew = ctProcess.isNew(); if (!(ctProcess instanceof CTProcessModelImpl)) { InvocationHandler invocationHandler = null; if (ProxyUtil.isProxyClass(ctProcess.getClass())) { invocationHandler = ProxyUtil.getInvocationHandler(ctProcess); throw new IllegalArgumentException( "Implement ModelWrapper in ctProcess proxy " + invocationHandler.getClass()); } throw new IllegalArgumentException( "Implement ModelWrapper in custom CTProcess implementation " + ctProcess.getClass()); } CTProcessModelImpl ctProcessModelImpl = (CTProcessModelImpl)ctProcess; if (isNew && (ctProcess.getCreateDate() == null)) { ServiceContext serviceContext = ServiceContextThreadLocal.getServiceContext(); Date date = new Date(); if (serviceContext == null) { ctProcess.setCreateDate(date); } else { ctProcess.setCreateDate(serviceContext.getCreateDate(date)); } } Session session = null; try { session = openSession(); if (isNew) { session.save(ctProcess); } else { ctProcess = (CTProcess)session.merge(ctProcess); } } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } entityCache.putResult( CTProcessImpl.class, ctProcessModelImpl, false, true); if (isNew) { ctProcess.setNew(false); } ctProcess.resetOriginalValues(); return ctProcess; } /** * Returns the ct process with the primary key or throws a com.liferay.portal.kernel.exception.NoSuchModelException if it could not be found. * * @param primaryKey the primary key of the ct process * @return the ct process * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess findByPrimaryKey(Serializable primaryKey) throws NoSuchProcessException { CTProcess ctProcess = fetchByPrimaryKey(primaryKey); if (ctProcess == null) { if (_log.isDebugEnabled()) { _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchProcessException( _NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return ctProcess; } /** * Returns the ct process with the primary key or throws a NoSuchProcessException if it could not be found. * * @param ctProcessId the primary key of the ct process * @return the ct process * @throws NoSuchProcessException if a ct process with the primary key could not be found */ @Override public CTProcess findByPrimaryKey(long ctProcessId) throws NoSuchProcessException { return findByPrimaryKey((Serializable)ctProcessId); } /** * Returns the ct process with the primary key or returns null if it could not be found. * * @param ctProcessId the primary key of the ct process * @return the ct process, or null if a ct process with the primary key could not be found */ @Override public CTProcess fetchByPrimaryKey(long ctProcessId) { return fetchByPrimaryKey((Serializable)ctProcessId); } /** * Returns all the ct processes. * * @return the ct processes */ @Override public List findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the ct processes. * *

* 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 CTProcessModelImpl. *

* * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @return the range of ct processes */ @Override public List findAll(int start, int end) { return findAll(start, end, null); } /** * Returns an ordered range of all the ct processes. * *

* 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 CTProcessModelImpl. *

* * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of ct processes */ @Override public List findAll( int start, int end, OrderByComparator orderByComparator) { return findAll(start, end, orderByComparator, true); } /** * Returns an ordered range of all the ct processes. * *

* 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 CTProcessModelImpl. *

* * @param start the lower bound of the range of ct processes * @param end the upper bound of the range of ct processes (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param useFinderCache whether to use the finder cache * @return the ordered range of ct processes */ @Override public List findAll( int start, int end, OrderByComparator orderByComparator, boolean useFinderCache) { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { if (useFinderCache) { finderPath = _finderPathWithoutPaginationFindAll; finderArgs = FINDER_ARGS_EMPTY; } } else if (useFinderCache) { finderPath = _finderPathWithPaginationFindAll; finderArgs = new Object[] {start, end, orderByComparator}; } List list = null; if (useFinderCache) { list = (List)finderCache.getResult( finderPath, finderArgs, this); } if (list == null) { StringBundler sb = null; String sql = null; if (orderByComparator != null) { sb = new StringBundler( 2 + (orderByComparator.getOrderByFields().length * 2)); sb.append(_SQL_SELECT_CTPROCESS); appendOrderByComparator( sb, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = sb.toString(); } else { sql = _SQL_SELECT_CTPROCESS; sql = sql.concat(CTProcessModelImpl.ORDER_BY_JPQL); } Session session = null; try { session = openSession(); Query query = session.createQuery(sql); list = (List)QueryUtil.list( query, getDialect(), start, end); cacheResult(list); if (useFinderCache) { finderCache.putResult(finderPath, finderArgs, list); } } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return list; } /** * Removes all the ct processes from the database. * */ @Override public void removeAll() { for (CTProcess ctProcess : findAll()) { remove(ctProcess); } } /** * Returns the number of ct processes. * * @return the number of ct processes */ @Override public int countAll() { Long count = (Long)finderCache.getResult( _finderPathCountAll, FINDER_ARGS_EMPTY, this); if (count == null) { Session session = null; try { session = openSession(); Query query = session.createQuery(_SQL_COUNT_CTPROCESS); count = (Long)query.uniqueResult(); finderCache.putResult( _finderPathCountAll, FINDER_ARGS_EMPTY, count); } catch (Exception exception) { throw processException(exception); } finally { closeSession(session); } } return count.intValue(); } @Override public Set getBadColumnNames() { return _badColumnNames; } @Override protected EntityCache getEntityCache() { return entityCache; } @Override protected String getPKDBName() { return "ctProcessId"; } @Override protected String getSelectSQL() { return _SQL_SELECT_CTPROCESS; } @Override protected Map getTableColumnsMap() { return CTProcessModelImpl.TABLE_COLUMNS_MAP; } /** * Initializes the ct process persistence. */ @Activate public void activate() { _valueObjectFinderCacheListThreshold = GetterUtil.getInteger( PropsUtil.get(PropsKeys.VALUE_OBJECT_FINDER_CACHE_LIST_THRESHOLD)); _finderPathWithPaginationFindAll = new FinderPath( FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0], new String[0], true); _finderPathWithoutPaginationFindAll = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0], new String[0], true); _finderPathCountAll = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countAll", new String[0], new String[0], false); _finderPathWithPaginationFindByCompanyId = new FinderPath( FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByCompanyId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }, new String[] {"companyId"}, true); _finderPathWithoutPaginationFindByCompanyId = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByCompanyId", new String[] {Long.class.getName()}, new String[] {"companyId"}, true); _finderPathCountByCompanyId = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByCompanyId", new String[] {Long.class.getName()}, new String[] {"companyId"}, false); _finderPathWithPaginationFindByCtCollectionId = new FinderPath( FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByCtCollectionId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }, new String[] {"ctCollectionId"}, true); _finderPathWithoutPaginationFindByCtCollectionId = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByCtCollectionId", new String[] {Long.class.getName()}, new String[] {"ctCollectionId"}, true); _finderPathCountByCtCollectionId = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByCtCollectionId", new String[] {Long.class.getName()}, new String[] {"ctCollectionId"}, false); _finderPathWithPaginationFindByC_T = new FinderPath( FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByC_T", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }, new String[] {"ctCollectionId", "type_"}, true); _finderPathWithoutPaginationFindByC_T = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByC_T", new String[] {Long.class.getName(), Integer.class.getName()}, new String[] {"ctCollectionId", "type_"}, true); _finderPathCountByC_T = new FinderPath( FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByC_T", new String[] {Long.class.getName(), Integer.class.getName()}, new String[] {"ctCollectionId", "type_"}, false); CTProcessUtil.setPersistence(this); } @Deactivate public void deactivate() { CTProcessUtil.setPersistence(null); entityCache.removeCache(CTProcessImpl.class.getName()); } @Override @Reference( target = CTPersistenceConstants.SERVICE_CONFIGURATION_FILTER, unbind = "-" ) public void setConfiguration(Configuration configuration) { } @Override @Reference( target = CTPersistenceConstants.ORIGIN_BUNDLE_SYMBOLIC_NAME_FILTER, unbind = "-" ) public void setDataSource(DataSource dataSource) { super.setDataSource(dataSource); } @Override @Reference( target = CTPersistenceConstants.ORIGIN_BUNDLE_SYMBOLIC_NAME_FILTER, unbind = "-" ) public void setSessionFactory(SessionFactory sessionFactory) { super.setSessionFactory(sessionFactory); } @Reference protected EntityCache entityCache; @Reference protected FinderCache finderCache; private static final String _SQL_SELECT_CTPROCESS = "SELECT ctProcess FROM CTProcess ctProcess"; private static final String _SQL_SELECT_CTPROCESS_WHERE = "SELECT ctProcess FROM CTProcess ctProcess WHERE "; private static final String _SQL_COUNT_CTPROCESS = "SELECT COUNT(ctProcess) FROM CTProcess ctProcess"; private static final String _SQL_COUNT_CTPROCESS_WHERE = "SELECT COUNT(ctProcess) FROM CTProcess ctProcess WHERE "; private static final String _ORDER_BY_ENTITY_ALIAS = "ctProcess."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No CTProcess exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No CTProcess exists with the key {"; private static final Log _log = LogFactoryUtil.getLog( CTProcessPersistenceImpl.class); private static final Set _badColumnNames = SetUtil.fromArray( new String[] {"type"}); @Override protected FinderCache getFinderCache() { return finderCache; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy