/** * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.ese.ils.beta.service.persistence; import com.ese.ils.beta.NoSuchPanicButtonException; import com.ese.ils.beta.model.PanicButton; import com.ese.ils.beta.model.impl.PanicButtonImpl; import com.ese.ils.beta.model.impl.PanicButtonModelImpl; import com.liferay.portal.NoSuchModelException; import com.liferay.portal.kernel.bean.BeanReference; import com.liferay.portal.kernel.cache.CacheRegistryUtil; import com.liferay.portal.kernel.dao.orm.EntityCacheUtil; import com.liferay.portal.kernel.dao.orm.FinderCacheUtil; 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.exception.SystemException; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.InstanceFactory; 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.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.StringUtil; import com.liferay.portal.model.CacheModel; import com.liferay.portal.model.ModelListener; import com.liferay.portal.service.persistence.BatchSessionUtil; import com.liferay.portal.service.persistence.ResourcePersistence; import com.liferay.portal.service.persistence.UserPersistence; import com.liferay.portal.service.persistence.impl.BasePersistenceImpl; import java.io.Serializable; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * The persistence implementation for the panic button service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author edik * @see PanicButtonPersistence * @see PanicButtonUtil * @generated */ public class PanicButtonPersistenceImpl extends BasePersistenceImpl<PanicButton> implements PanicButtonPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link PanicButtonUtil} to access the panic button persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = PanicButtonImpl.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"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_BYMODULE = new FinderPath(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonModelImpl.FINDER_CACHE_ENABLED, PanicButtonImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByByModule", new String[] { Long.class.getName(), "java.lang.Integer", "java.lang.Integer", "com.liferay.portal.kernel.util.OrderByComparator" }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYMODULE = new FinderPath(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonModelImpl.FINDER_CACHE_ENABLED, PanicButtonImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByByModule", new String[] { Long.class.getName() }, PanicButtonModelImpl.MODULEID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_BYMODULE = new FinderPath(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByByModule", new String[] { Long.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL = new FinderPath(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonModelImpl.FINDER_CACHE_ENABLED, PanicButtonImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonModelImpl.FINDER_CACHE_ENABLED, PanicButtonImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countAll", new String[0]); /** * Caches the panic button in the entity cache if it is enabled. * * @param panicButton the panic button */ public void cacheResult(PanicButton panicButton) { EntityCacheUtil.putResult(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButton.getPrimaryKey(), panicButton); panicButton.resetOriginalValues(); } /** * Caches the panic buttons in the entity cache if it is enabled. * * @param panicButtons the panic buttons */ public void cacheResult(List<PanicButton> panicButtons) { for (PanicButton panicButton : panicButtons) { if (EntityCacheUtil.getResult( PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButton.getPrimaryKey()) == null) { cacheResult(panicButton); } else { panicButton.resetOriginalValues(); } } } /** * Clears the cache for all panic buttons. * * <p> * The {@link com.liferay.portal.kernel.dao.orm.EntityCache} and {@link com.liferay.portal.kernel.dao.orm.FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache() { if (_HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE) { CacheRegistryUtil.clear(PanicButtonImpl.class.getName()); } EntityCacheUtil.clearCache(PanicButtonImpl.class.getName()); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_ENTITY); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } /** * Clears the cache for the panic button. * * <p> * The {@link com.liferay.portal.kernel.dao.orm.EntityCache} and {@link com.liferay.portal.kernel.dao.orm.FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache(PanicButton panicButton) { EntityCacheUtil.removeResult(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButton.getPrimaryKey()); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @Override public void clearCache(List<PanicButton> panicButtons) { FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); for (PanicButton panicButton : panicButtons) { EntityCacheUtil.removeResult(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButton.getPrimaryKey()); } } /** * Creates a new panic button with the primary key. Does not add the panic button to the database. * * @param panicButtonId the primary key for the new panic button * @return the new panic button */ public PanicButton create(long panicButtonId) { PanicButton panicButton = new PanicButtonImpl(); panicButton.setNew(true); panicButton.setPrimaryKey(panicButtonId); return panicButton; } /** * Removes the panic button with the primary key from the database. Also notifies the appropriate model listeners. * * @param panicButtonId the primary key of the panic button * @return the panic button that was removed * @throws com.ese.ils.beta.NoSuchPanicButtonException if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ public PanicButton remove(long panicButtonId) throws NoSuchPanicButtonException, SystemException { return remove(Long.valueOf(panicButtonId)); } /** * Removes the panic button with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the panic button * @return the panic button that was removed * @throws com.ese.ils.beta.NoSuchPanicButtonException if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public PanicButton remove(Serializable primaryKey) throws NoSuchPanicButtonException, SystemException { Session session = null; try { session = openSession(); PanicButton panicButton = (PanicButton)session.get(PanicButtonImpl.class, primaryKey); if (panicButton == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchPanicButtonException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(panicButton); } catch (NoSuchPanicButtonException nsee) { throw nsee; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } @Override protected PanicButton removeImpl(PanicButton panicButton) throws SystemException { panicButton = toUnwrappedModel(panicButton); Session session = null; try { session = openSession(); BatchSessionUtil.delete(session, panicButton); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } clearCache(panicButton); return panicButton; } @Override public PanicButton updateImpl( com.ese.ils.beta.model.PanicButton panicButton, boolean merge) throws SystemException { panicButton = toUnwrappedModel(panicButton); boolean isNew = panicButton.isNew(); PanicButtonModelImpl panicButtonModelImpl = (PanicButtonModelImpl)panicButton; Session session = null; try { session = openSession(); BatchSessionUtil.update(session, panicButton, merge); panicButton.setNew(false); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); if (isNew || !PanicButtonModelImpl.COLUMN_BITMASK_ENABLED) { FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } else { if ((panicButtonModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYMODULE.getColumnBitmask()) != 0) { Object[] args = new Object[] { Long.valueOf(panicButtonModelImpl.getOriginalModuleId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_BYMODULE, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYMODULE, args); args = new Object[] { Long.valueOf(panicButtonModelImpl.getModuleId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_BYMODULE, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYMODULE, args); } } EntityCacheUtil.putResult(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButton.getPrimaryKey(), panicButton); return panicButton; } protected PanicButton toUnwrappedModel(PanicButton panicButton) { if (panicButton instanceof PanicButtonImpl) { return panicButton; } PanicButtonImpl panicButtonImpl = new PanicButtonImpl(); panicButtonImpl.setNew(panicButton.isNew()); panicButtonImpl.setPrimaryKey(panicButton.getPrimaryKey()); panicButtonImpl.setPanicButtonId(panicButton.getPanicButtonId()); panicButtonImpl.setUserId(panicButton.getUserId()); panicButtonImpl.setCreateDate(panicButton.getCreateDate()); panicButtonImpl.setModuleId(panicButton.getModuleId()); panicButtonImpl.setSlideId(panicButton.getSlideId()); panicButtonImpl.setReason(panicButton.getReason()); return panicButtonImpl; } /** * Returns the panic button with the primary key or throws a {@link com.liferay.portal.NoSuchModelException} if it could not be found. * * @param primaryKey the primary key of the panic button * @return the panic button * @throws com.liferay.portal.NoSuchModelException if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public PanicButton findByPrimaryKey(Serializable primaryKey) throws NoSuchModelException, SystemException { return findByPrimaryKey(((Long)primaryKey).longValue()); } /** * Returns the panic button with the primary key or throws a {@link com.ese.ils.beta.NoSuchPanicButtonException} if it could not be found. * * @param panicButtonId the primary key of the panic button * @return the panic button * @throws com.ese.ils.beta.NoSuchPanicButtonException if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ public PanicButton findByPrimaryKey(long panicButtonId) throws NoSuchPanicButtonException, SystemException { PanicButton panicButton = fetchByPrimaryKey(panicButtonId); if (panicButton == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + panicButtonId); } throw new NoSuchPanicButtonException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + panicButtonId); } return panicButton; } /** * Returns the panic button with the primary key or returns <code>null</code> if it could not be found. * * @param primaryKey the primary key of the panic button * @return the panic button, or <code>null</code> if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public PanicButton fetchByPrimaryKey(Serializable primaryKey) throws SystemException { return fetchByPrimaryKey(((Long)primaryKey).longValue()); } /** * Returns the panic button with the primary key or returns <code>null</code> if it could not be found. * * @param panicButtonId the primary key of the panic button * @return the panic button, or <code>null</code> if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ public PanicButton fetchByPrimaryKey(long panicButtonId) throws SystemException { PanicButton panicButton = (PanicButton)EntityCacheUtil.getResult(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButtonId); if (panicButton == _nullPanicButton) { return null; } if (panicButton == null) { Session session = null; boolean hasException = false; try { session = openSession(); panicButton = (PanicButton)session.get(PanicButtonImpl.class, Long.valueOf(panicButtonId)); } catch (Exception e) { hasException = true; throw processException(e); } finally { if (panicButton != null) { cacheResult(panicButton); } else if (!hasException) { EntityCacheUtil.putResult(PanicButtonModelImpl.ENTITY_CACHE_ENABLED, PanicButtonImpl.class, panicButtonId, _nullPanicButton); } closeSession(session); } } return panicButton; } /** * Returns all the panic buttons where moduleId = ?. * * @param moduleId the module ID * @return the matching panic buttons * @throws SystemException if a system exception occurred */ public List<PanicButton> findByByModule(long moduleId) throws SystemException { return findByByModule(moduleId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the panic buttons where moduleId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param moduleId the module ID * @param start the lower bound of the range of panic buttons * @param end the upper bound of the range of panic buttons (not inclusive) * @return the range of matching panic buttons * @throws SystemException if a system exception occurred */ public List<PanicButton> findByByModule(long moduleId, int start, int end) throws SystemException { return findByByModule(moduleId, start, end, null); } /** * Returns an ordered range of all the panic buttons where moduleId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param moduleId the module ID * @param start the lower bound of the range of panic buttons * @param end the upper bound of the range of panic buttons (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching panic buttons * @throws SystemException if a system exception occurred */ public List<PanicButton> findByByModule(long moduleId, int start, int end, OrderByComparator orderByComparator) throws SystemException { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYMODULE; finderArgs = new Object[] { moduleId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_BYMODULE; finderArgs = new Object[] { moduleId, start, end, orderByComparator }; } List<PanicButton> list = (List<PanicButton>)FinderCacheUtil.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (PanicButton panicButton : list) { if ((moduleId != panicButton.getModuleId())) { list = null; break; } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_PANICBUTTON_WHERE); query.append(_FINDER_COLUMN_BYMODULE_MODULEID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { query.append(PanicButtonModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(moduleId); list = (List<PanicButton>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { if (list == null) { FinderCacheUtil.removeResult(finderPath, finderArgs); } else { cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } closeSession(session); } } return list; } /** * Returns the first panic button in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching panic button * @throws com.ese.ils.beta.NoSuchPanicButtonException if a matching panic button could not be found * @throws SystemException if a system exception occurred */ public PanicButton findByByModule_First(long moduleId, OrderByComparator orderByComparator) throws NoSuchPanicButtonException, SystemException { PanicButton panicButton = fetchByByModule_First(moduleId, orderByComparator); if (panicButton != null) { return panicButton; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("moduleId="); msg.append(moduleId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchPanicButtonException(msg.toString()); } /** * Returns the first panic button in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching panic button, or <code>null</code> if a matching panic button could not be found * @throws SystemException if a system exception occurred */ public PanicButton fetchByByModule_First(long moduleId, OrderByComparator orderByComparator) throws SystemException { List<PanicButton> list = findByByModule(moduleId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last panic button in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching panic button * @throws com.ese.ils.beta.NoSuchPanicButtonException if a matching panic button could not be found * @throws SystemException if a system exception occurred */ public PanicButton findByByModule_Last(long moduleId, OrderByComparator orderByComparator) throws NoSuchPanicButtonException, SystemException { PanicButton panicButton = fetchByByModule_Last(moduleId, orderByComparator); if (panicButton != null) { return panicButton; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("moduleId="); msg.append(moduleId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchPanicButtonException(msg.toString()); } /** * Returns the last panic button in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching panic button, or <code>null</code> if a matching panic button could not be found * @throws SystemException if a system exception occurred */ public PanicButton fetchByByModule_Last(long moduleId, OrderByComparator orderByComparator) throws SystemException { int count = countByByModule(moduleId); List<PanicButton> list = findByByModule(moduleId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the panic buttons before and after the current panic button in the ordered set where moduleId = ?. * * @param panicButtonId the primary key of the current panic button * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next panic button * @throws com.ese.ils.beta.NoSuchPanicButtonException if a panic button with the primary key could not be found * @throws SystemException if a system exception occurred */ public PanicButton[] findByByModule_PrevAndNext(long panicButtonId, long moduleId, OrderByComparator orderByComparator) throws NoSuchPanicButtonException, SystemException { PanicButton panicButton = findByPrimaryKey(panicButtonId); Session session = null; try { session = openSession(); PanicButton[] array = new PanicButtonImpl[3]; array[0] = getByByModule_PrevAndNext(session, panicButton, moduleId, orderByComparator, true); array[1] = panicButton; array[2] = getByByModule_PrevAndNext(session, panicButton, moduleId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected PanicButton getByByModule_PrevAndNext(Session session, PanicButton panicButton, long moduleId, OrderByComparator orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 6)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_PANICBUTTON_WHERE); query.append(_FINDER_COLUMN_BYMODULE_MODULEID_2); if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { query.append(_ORDER_BY_ENTITY_ALIAS); query.append(orderByConditionFields[i]); if ((i + 1) < orderByConditionFields.length) { if (orderByComparator.isAscending() ^ previous) { query.append(WHERE_GREATER_THAN_HAS_NEXT); } else { query.append(WHERE_LESSER_THAN_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { query.append(WHERE_GREATER_THAN); } else { query.append(WHERE_LESSER_THAN); } } } query.append(ORDER_BY_CLAUSE); String[] orderByFields = orderByComparator.getOrderByFields(); for (int i = 0; i < orderByFields.length; i++) { query.append(_ORDER_BY_ENTITY_ALIAS); query.append(orderByFields[i]); if ((i + 1) < orderByFields.length) { if (orderByComparator.isAscending() ^ previous) { query.append(ORDER_BY_ASC_HAS_NEXT); } else { query.append(ORDER_BY_DESC_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { query.append(ORDER_BY_ASC); } else { query.append(ORDER_BY_DESC); } } } } else { query.append(PanicButtonModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Query q = session.createQuery(sql); q.setFirstResult(0); q.setMaxResults(2); QueryPos qPos = QueryPos.getInstance(q); qPos.add(moduleId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(panicButton); for (Object value : values) { qPos.add(value); } } List<PanicButton> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the panic buttons. * * @return the panic buttons * @throws SystemException if a system exception occurred */ public List<PanicButton> findAll() throws SystemException { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the panic buttons. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param start the lower bound of the range of panic buttons * @param end the upper bound of the range of panic buttons (not inclusive) * @return the range of panic buttons * @throws SystemException if a system exception occurred */ public List<PanicButton> findAll(int start, int end) throws SystemException { return findAll(start, end, null); } /** * Returns an ordered range of all the panic buttons. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param start the lower bound of the range of panic buttons * @param end the upper bound of the range of panic buttons (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of panic buttons * @throws SystemException if a system exception occurred */ public List<PanicButton> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException { FinderPath finderPath = null; Object[] finderArgs = new Object[] { start, end, orderByComparator }; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL; finderArgs = FINDER_ARGS_EMPTY; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_ALL; finderArgs = new Object[] { start, end, orderByComparator }; } List<PanicButton> list = (List<PanicButton>)FinderCacheUtil.getResult(finderPath, finderArgs, this); if (list == null) { StringBundler query = null; String sql = null; if (orderByComparator != null) { query = new StringBundler(2 + (orderByComparator.getOrderByFields().length * 3)); query.append(_SQL_SELECT_PANICBUTTON); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_PANICBUTTON.concat(PanicButtonModelImpl.ORDER_BY_JPQL); } Session session = null; try { session = openSession(); Query q = session.createQuery(sql); if (orderByComparator == null) { list = (List<PanicButton>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); } else { list = (List<PanicButton>)QueryUtil.list(q, getDialect(), start, end); } } catch (Exception e) { throw processException(e); } finally { if (list == null) { FinderCacheUtil.removeResult(finderPath, finderArgs); } else { cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } closeSession(session); } } return list; } /** * Removes all the panic buttons where moduleId = ? from the database. * * @param moduleId the module ID * @throws SystemException if a system exception occurred */ public void removeByByModule(long moduleId) throws SystemException { for (PanicButton panicButton : findByByModule(moduleId)) { remove(panicButton); } } /** * Removes all the panic buttons from the database. * * @throws SystemException if a system exception occurred */ public void removeAll() throws SystemException { for (PanicButton panicButton : findAll()) { remove(panicButton); } } /** * Returns the number of panic buttons where moduleId = ?. * * @param moduleId the module ID * @return the number of matching panic buttons * @throws SystemException if a system exception occurred */ public int countByByModule(long moduleId) throws SystemException { Object[] finderArgs = new Object[] { moduleId }; Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_BY_BYMODULE, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_PANICBUTTON_WHERE); query.append(_FINDER_COLUMN_BYMODULE_MODULEID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(moduleId); count = (Long)q.uniqueResult(); } catch (Exception e) { throw processException(e); } finally { if (count == null) { count = Long.valueOf(0); } FinderCacheUtil.putResult(FINDER_PATH_COUNT_BY_BYMODULE, finderArgs, count); closeSession(session); } } return count.intValue(); } /** * Returns the number of panic buttons. * * @return the number of panic buttons * @throws SystemException if a system exception occurred */ public int countAll() throws SystemException { Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, this); if (count == null) { Session session = null; try { session = openSession(); Query q = session.createQuery(_SQL_COUNT_PANICBUTTON); count = (Long)q.uniqueResult(); } catch (Exception e) { throw processException(e); } finally { if (count == null) { count = Long.valueOf(0); } FinderCacheUtil.putResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, count); closeSession(session); } } return count.intValue(); } /** * Initializes the panic button persistence. */ public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.util.service.ServiceProps.get( "value.object.listener.com.ese.ils.beta.model.PanicButton"))); if (listenerClassNames.length > 0) { try { List<ModelListener<PanicButton>> listenersList = new ArrayList<ModelListener<PanicButton>>(); for (String listenerClassName : listenerClassNames) { listenersList.add((ModelListener<PanicButton>)InstanceFactory.newInstance( listenerClassName)); } listeners = listenersList.toArray(new ModelListener[listenersList.size()]); } catch (Exception e) { _log.error(e); } } } public void destroy() { EntityCacheUtil.removeCache(PanicButtonImpl.class.getName()); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_ENTITY); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @BeanReference(type = FavoritePersistence.class) protected FavoritePersistence favoritePersistence; @BeanReference(type = ModulePersistence.class) protected ModulePersistence modulePersistence; @BeanReference(type = PanicButtonPersistence.class) protected PanicButtonPersistence panicButtonPersistence; @BeanReference(type = QuestionPersistence.class) protected QuestionPersistence questionPersistence; @BeanReference(type = SlidePersistence.class) protected SlidePersistence slidePersistence; @BeanReference(type = UserInfoPersistence.class) protected UserInfoPersistence userInfoPersistence; @BeanReference(type = ResourcePersistence.class) protected ResourcePersistence resourcePersistence; @BeanReference(type = UserPersistence.class) protected UserPersistence userPersistence; private static final String _SQL_SELECT_PANICBUTTON = "SELECT panicButton FROM PanicButton panicButton"; private static final String _SQL_SELECT_PANICBUTTON_WHERE = "SELECT panicButton FROM PanicButton panicButton WHERE "; private static final String _SQL_COUNT_PANICBUTTON = "SELECT COUNT(panicButton) FROM PanicButton panicButton"; private static final String _SQL_COUNT_PANICBUTTON_WHERE = "SELECT COUNT(panicButton) FROM PanicButton panicButton WHERE "; private static final String _FINDER_COLUMN_BYMODULE_MODULEID_2 = "panicButton.moduleId = ?"; private static final String _ORDER_BY_ENTITY_ALIAS = "panicButton."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No PanicButton exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No PanicButton exists with the key {"; private static final boolean _HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE = GetterUtil.getBoolean(PropsUtil.get( PropsKeys.HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE)); private static Log _log = LogFactoryUtil.getLog(PanicButtonPersistenceImpl.class); private static PanicButton _nullPanicButton = new PanicButtonImpl() { @Override public Object clone() { return this; } @Override public CacheModel<PanicButton> toCacheModel() { return _nullPanicButtonCacheModel; } }; private static CacheModel<PanicButton> _nullPanicButtonCacheModel = new CacheModel<PanicButton>() { public PanicButton toEntityModel() { return _nullPanicButton; } }; }