/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portlet.messageboards.service.persistence.impl; import aQute.bnd.annotation.ProviderType; import com.liferay.message.boards.kernel.exception.NoSuchMailingListException; import com.liferay.message.boards.kernel.model.MBMailingList; import com.liferay.message.boards.kernel.service.persistence.MBMailingListPersistence; import com.liferay.portal.kernel.bean.BeanReference; import com.liferay.portal.kernel.dao.orm.EntityCache; import com.liferay.portal.kernel.dao.orm.EntityCacheUtil; import com.liferay.portal.kernel.dao.orm.FinderCache; 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.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.service.ServiceContextThreadLocal; import com.liferay.portal.kernel.service.persistence.CompanyProvider; import com.liferay.portal.kernel.service.persistence.CompanyProviderWrapper; import com.liferay.portal.kernel.service.persistence.impl.BasePersistenceImpl; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.util.ReflectionUtil; import com.liferay.portal.kernel.util.SetUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.Validator; import com.liferay.portal.kernel.uuid.PortalUUIDUtil; import com.liferay.portlet.messageboards.model.impl.MBMailingListImpl; import com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl; import java.io.Serializable; import java.lang.reflect.Field; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; /** * The persistence implementation for the message boards mailing list service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author Brian Wing Shun Chan * @see MBMailingListPersistence * @see com.liferay.message.boards.kernel.service.persistence.MBMailingListUtil * @generated */ @ProviderType public class MBMailingListPersistenceImpl extends BasePersistenceImpl<MBMailingList> implements MBMailingListPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link MBMailingListUtil} to access the message boards mailing list persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = MBMailingListImpl.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_ALL = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countAll", new String[0]); public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByUuid", new String[] { String.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByUuid", new String[] { String.class.getName() }, MBMailingListModelImpl.UUID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_UUID = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByUuid", new String[] { String.class.getName() }); /** * Returns all the message boards mailing lists where uuid = ?. * * @param uuid the uuid * @return the matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid(String uuid) { return findByUuid(uuid, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the message boards mailing lists where uuid = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @return the range of matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid(String uuid, int start, int end) { return findByUuid(uuid, start, end, null); } /** * Returns an ordered range of all the message boards mailing lists where uuid = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid(String uuid, int start, int end, OrderByComparator<MBMailingList> orderByComparator) { return findByUuid(uuid, start, end, orderByComparator, true); } /** * Returns an ordered range of all the message boards mailing lists where uuid = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid(String uuid, int start, int end, OrderByComparator<MBMailingList> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID; finderArgs = new Object[] { uuid }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID; finderArgs = new Object[] { uuid, start, end, orderByComparator }; } List<MBMailingList> list = null; if (retrieveFromCache) { list = (List<MBMailingList>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (MBMailingList mbMailingList : list) { if (!Objects.equals(uuid, mbMailingList.getUuid())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_UUID_2); } if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(MBMailingListModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } if (!pagination) { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; } /** * Returns the first message boards mailing list in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByUuid_First(String uuid, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByUuid_First(uuid, orderByComparator); if (mbMailingList != null) { return mbMailingList; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("uuid="); msg.append(uuid); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchMailingListException(msg.toString()); } /** * Returns the first message boards mailing list in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByUuid_First(String uuid, OrderByComparator<MBMailingList> orderByComparator) { List<MBMailingList> list = findByUuid(uuid, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last message boards mailing list in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByUuid_Last(String uuid, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByUuid_Last(uuid, orderByComparator); if (mbMailingList != null) { return mbMailingList; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("uuid="); msg.append(uuid); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchMailingListException(msg.toString()); } /** * Returns the last message boards mailing list in the ordered set where uuid = ?. * * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByUuid_Last(String uuid, OrderByComparator<MBMailingList> orderByComparator) { int count = countByUuid(uuid); if (count == 0) { return null; } List<MBMailingList> list = findByUuid(uuid, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = ?. * * @param mailingListId the primary key of the current message boards mailing list * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next message boards mailing list * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList[] findByUuid_PrevAndNext(long mailingListId, String uuid, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = findByPrimaryKey(mailingListId); Session session = null; try { session = openSession(); MBMailingList[] array = new MBMailingListImpl[3]; array[0] = getByUuid_PrevAndNext(session, mbMailingList, uuid, orderByComparator, true); array[1] = mbMailingList; array[2] = getByUuid_PrevAndNext(session, mbMailingList, uuid, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected MBMailingList getByUuid_PrevAndNext(Session session, MBMailingList mbMailingList, String uuid, OrderByComparator<MBMailingList> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(4 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_UUID_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(MBMailingListModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Query q = session.createQuery(sql); q.setFirstResult(0); q.setMaxResults(2); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(mbMailingList); for (Object value : values) { qPos.add(value); } } List<MBMailingList> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the message boards mailing lists where uuid = ? from the database. * * @param uuid the uuid */ @Override public void removeByUuid(String uuid) { for (MBMailingList mbMailingList : findByUuid(uuid, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(mbMailingList); } } /** * Returns the number of message boards mailing lists where uuid = ?. * * @param uuid the uuid * @return the number of matching message boards mailing lists */ @Override public int countByUuid(String uuid) { FinderPath finderPath = FINDER_PATH_COUNT_BY_UUID; Object[] finderArgs = new Object[] { uuid }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_UUID_2); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } count = (Long)q.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_UUID_UUID_1 = "mbMailingList.uuid IS NULL"; private static final String _FINDER_COLUMN_UUID_UUID_2 = "mbMailingList.uuid = ?"; private static final String _FINDER_COLUMN_UUID_UUID_3 = "(mbMailingList.uuid IS NULL OR mbMailingList.uuid = '')"; public static final FinderPath FINDER_PATH_FETCH_BY_UUID_G = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByUUID_G", new String[] { String.class.getName(), Long.class.getName() }, MBMailingListModelImpl.UUID_COLUMN_BITMASK | MBMailingListModelImpl.GROUPID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_UUID_G = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByUUID_G", new String[] { String.class.getName(), Long.class.getName() }); /** * Returns the message boards mailing list where uuid = ? and groupId = ? or throws a {@link NoSuchMailingListException} if it could not be found. * * @param uuid the uuid * @param groupId the group ID * @return the matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByUUID_G(String uuid, long groupId) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByUUID_G(uuid, groupId); if (mbMailingList == null) { StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("uuid="); msg.append(uuid); msg.append(", groupId="); msg.append(groupId); msg.append(StringPool.CLOSE_CURLY_BRACE); if (_log.isDebugEnabled()) { _log.debug(msg.toString()); } throw new NoSuchMailingListException(msg.toString()); } return mbMailingList; } /** * Returns the message boards mailing list where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param uuid the uuid * @param groupId the group ID * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByUUID_G(String uuid, long groupId) { return fetchByUUID_G(uuid, groupId, true); } /** * Returns the message boards mailing list where uuid = ? and groupId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param uuid the uuid * @param groupId the group ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByUUID_G(String uuid, long groupId, boolean retrieveFromCache) { Object[] finderArgs = new Object[] { uuid, groupId }; Object result = null; if (retrieveFromCache) { result = finderCache.getResult(FINDER_PATH_FETCH_BY_UUID_G, finderArgs, this); } if (result instanceof MBMailingList) { MBMailingList mbMailingList = (MBMailingList)result; if (!Objects.equals(uuid, mbMailingList.getUuid()) || (groupId != mbMailingList.getGroupId())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(4); query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_G_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_G_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_G_UUID_2); } query.append(_FINDER_COLUMN_UUID_G_GROUPID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } qPos.add(groupId); List<MBMailingList> list = q.list(); if (list.isEmpty()) { finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, finderArgs, list); } else { MBMailingList mbMailingList = list.get(0); result = mbMailingList; cacheResult(mbMailingList); if ((mbMailingList.getUuid() == null) || !mbMailingList.getUuid().equals(uuid) || (mbMailingList.getGroupId() != groupId)) { finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, finderArgs, mbMailingList); } } } catch (Exception e) { finderCache.removeResult(FINDER_PATH_FETCH_BY_UUID_G, finderArgs); throw processException(e); } finally { closeSession(session); } } if (result instanceof List<?>) { return null; } else { return (MBMailingList)result; } } /** * Removes the message boards mailing list where uuid = ? and groupId = ? from the database. * * @param uuid the uuid * @param groupId the group ID * @return the message boards mailing list that was removed */ @Override public MBMailingList removeByUUID_G(String uuid, long groupId) throws NoSuchMailingListException { MBMailingList mbMailingList = findByUUID_G(uuid, groupId); return remove(mbMailingList); } /** * Returns the number of message boards mailing lists where uuid = ? and groupId = ?. * * @param uuid the uuid * @param groupId the group ID * @return the number of matching message boards mailing lists */ @Override public int countByUUID_G(String uuid, long groupId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_UUID_G; Object[] finderArgs = new Object[] { uuid, groupId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_G_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_G_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_G_UUID_2); } query.append(_FINDER_COLUMN_UUID_G_GROUPID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } qPos.add(groupId); count = (Long)q.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_UUID_G_UUID_1 = "mbMailingList.uuid IS NULL AND "; private static final String _FINDER_COLUMN_UUID_G_UUID_2 = "mbMailingList.uuid = ? AND "; private static final String _FINDER_COLUMN_UUID_G_UUID_3 = "(mbMailingList.uuid IS NULL OR mbMailingList.uuid = '') AND "; private static final String _FINDER_COLUMN_UUID_G_GROUPID_2 = "mbMailingList.groupId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByUuid_C", new String[] { String.class.getName(), Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByUuid_C", new String[] { String.class.getName(), Long.class.getName() }, MBMailingListModelImpl.UUID_COLUMN_BITMASK | MBMailingListModelImpl.COMPANYID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_UUID_C = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByUuid_C", new String[] { String.class.getName(), Long.class.getName() }); /** * Returns all the message boards mailing lists where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid_C(String uuid, long companyId) { return findByUuid_C(uuid, companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the message boards mailing lists where uuid = ? and companyId = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @return the range of matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid_C(String uuid, long companyId, int start, int end) { return findByUuid_C(uuid, companyId, start, end, null); } /** * Returns an ordered range of all the message boards mailing lists where uuid = ? and companyId = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<MBMailingList> orderByComparator) { return findByUuid_C(uuid, companyId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the message boards mailing lists where uuid = ? and companyId = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param uuid the uuid * @param companyId the company ID * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching message boards mailing lists */ @Override public List<MBMailingList> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<MBMailingList> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C; finderArgs = new Object[] { uuid, companyId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C; finderArgs = new Object[] { uuid, companyId, start, end, orderByComparator }; } List<MBMailingList> list = null; if (retrieveFromCache) { list = (List<MBMailingList>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (MBMailingList mbMailingList : list) { if (!Objects.equals(uuid, mbMailingList.getUuid()) || (companyId != mbMailingList.getCompanyId())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(4 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(4); } query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_C_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_C_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_C_UUID_2); } query.append(_FINDER_COLUMN_UUID_C_COMPANYID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(MBMailingListModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } qPos.add(companyId); if (!pagination) { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; } /** * Returns the first message boards mailing list in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByUuid_C_First(String uuid, long companyId, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByUuid_C_First(uuid, companyId, orderByComparator); if (mbMailingList != null) { return mbMailingList; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("uuid="); msg.append(uuid); msg.append(", companyId="); msg.append(companyId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchMailingListException(msg.toString()); } /** * Returns the first message boards mailing list in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<MBMailingList> orderByComparator) { List<MBMailingList> list = findByUuid_C(uuid, companyId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last message boards mailing list in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByUuid_C_Last(String uuid, long companyId, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByUuid_C_Last(uuid, companyId, orderByComparator); if (mbMailingList != null) { return mbMailingList; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("uuid="); msg.append(uuid); msg.append(", companyId="); msg.append(companyId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchMailingListException(msg.toString()); } /** * Returns the last message boards mailing list in the ordered set where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<MBMailingList> orderByComparator) { int count = countByUuid_C(uuid, companyId); if (count == 0) { return null; } List<MBMailingList> list = findByUuid_C(uuid, companyId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where uuid = ? and companyId = ?. * * @param mailingListId the primary key of the current message boards mailing list * @param uuid the uuid * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next message boards mailing list * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList[] findByUuid_C_PrevAndNext(long mailingListId, String uuid, long companyId, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = findByPrimaryKey(mailingListId); Session session = null; try { session = openSession(); MBMailingList[] array = new MBMailingListImpl[3]; array[0] = getByUuid_C_PrevAndNext(session, mbMailingList, uuid, companyId, orderByComparator, true); array[1] = mbMailingList; array[2] = getByUuid_C_PrevAndNext(session, mbMailingList, uuid, companyId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected MBMailingList getByUuid_C_PrevAndNext(Session session, MBMailingList mbMailingList, String uuid, long companyId, OrderByComparator<MBMailingList> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(5 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(4); } query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_C_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_C_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_C_UUID_2); } query.append(_FINDER_COLUMN_UUID_C_COMPANYID_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(MBMailingListModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Query q = session.createQuery(sql); q.setFirstResult(0); q.setMaxResults(2); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } qPos.add(companyId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(mbMailingList); for (Object value : values) { qPos.add(value); } } List<MBMailingList> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the message boards mailing lists where uuid = ? and companyId = ? from the database. * * @param uuid the uuid * @param companyId the company ID */ @Override public void removeByUuid_C(String uuid, long companyId) { for (MBMailingList mbMailingList : findByUuid_C(uuid, companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(mbMailingList); } } /** * Returns the number of message boards mailing lists where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching message boards mailing lists */ @Override public int countByUuid_C(String uuid, long companyId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_UUID_C; Object[] finderArgs = new Object[] { uuid, companyId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_MBMAILINGLIST_WHERE); boolean bindUuid = false; if (uuid == null) { query.append(_FINDER_COLUMN_UUID_C_UUID_1); } else if (uuid.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_UUID_C_UUID_3); } else { bindUuid = true; query.append(_FINDER_COLUMN_UUID_C_UUID_2); } query.append(_FINDER_COLUMN_UUID_C_COMPANYID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); if (bindUuid) { qPos.add(uuid); } qPos.add(companyId); count = (Long)q.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_UUID_C_UUID_1 = "mbMailingList.uuid IS NULL AND "; private static final String _FINDER_COLUMN_UUID_C_UUID_2 = "mbMailingList.uuid = ? AND "; private static final String _FINDER_COLUMN_UUID_C_UUID_3 = "(mbMailingList.uuid IS NULL OR mbMailingList.uuid = '') AND "; private static final String _FINDER_COLUMN_UUID_C_COMPANYID_2 = "mbMailingList.companyId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_ACTIVE = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByActive", new String[] { Boolean.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_ACTIVE = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByActive", new String[] { Boolean.class.getName() }, MBMailingListModelImpl.ACTIVE_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_ACTIVE = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByActive", new String[] { Boolean.class.getName() }); /** * Returns all the message boards mailing lists where active = ?. * * @param active the active * @return the matching message boards mailing lists */ @Override public List<MBMailingList> findByActive(boolean active) { return findByActive(active, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the message boards mailing lists where active = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param active the active * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @return the range of matching message boards mailing lists */ @Override public List<MBMailingList> findByActive(boolean active, int start, int end) { return findByActive(active, start, end, null); } /** * Returns an ordered range of all the message boards mailing lists where active = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param active the active * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching message boards mailing lists */ @Override public List<MBMailingList> findByActive(boolean active, int start, int end, OrderByComparator<MBMailingList> orderByComparator) { return findByActive(active, start, end, orderByComparator, true); } /** * Returns an ordered range of all the message boards mailing lists where active = ?. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param active the active * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching message boards mailing lists */ @Override public List<MBMailingList> findByActive(boolean active, int start, int end, OrderByComparator<MBMailingList> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_ACTIVE; finderArgs = new Object[] { active }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_ACTIVE; finderArgs = new Object[] { active, start, end, orderByComparator }; } List<MBMailingList> list = null; if (retrieveFromCache) { list = (List<MBMailingList>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (MBMailingList mbMailingList : list) { if ((active != mbMailingList.getActive())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); query.append(_FINDER_COLUMN_ACTIVE_ACTIVE_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(MBMailingListModelImpl.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(active); if (!pagination) { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; } /** * Returns the first message boards mailing list in the ordered set where active = ?. * * @param active the active * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByActive_First(boolean active, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByActive_First(active, orderByComparator); if (mbMailingList != null) { return mbMailingList; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("active="); msg.append(active); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchMailingListException(msg.toString()); } /** * Returns the first message boards mailing list in the ordered set where active = ?. * * @param active the active * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByActive_First(boolean active, OrderByComparator<MBMailingList> orderByComparator) { List<MBMailingList> list = findByActive(active, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last message boards mailing list in the ordered set where active = ?. * * @param active the active * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByActive_Last(boolean active, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByActive_Last(active, orderByComparator); if (mbMailingList != null) { return mbMailingList; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("active="); msg.append(active); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchMailingListException(msg.toString()); } /** * Returns the last message boards mailing list in the ordered set where active = ?. * * @param active the active * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByActive_Last(boolean active, OrderByComparator<MBMailingList> orderByComparator) { int count = countByActive(active); if (count == 0) { return null; } List<MBMailingList> list = findByActive(active, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the message boards mailing lists before and after the current message boards mailing list in the ordered set where active = ?. * * @param mailingListId the primary key of the current message boards mailing list * @param active the active * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next message boards mailing list * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList[] findByActive_PrevAndNext(long mailingListId, boolean active, OrderByComparator<MBMailingList> orderByComparator) throws NoSuchMailingListException { MBMailingList mbMailingList = findByPrimaryKey(mailingListId); Session session = null; try { session = openSession(); MBMailingList[] array = new MBMailingListImpl[3]; array[0] = getByActive_PrevAndNext(session, mbMailingList, active, orderByComparator, true); array[1] = mbMailingList; array[2] = getByActive_PrevAndNext(session, mbMailingList, active, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected MBMailingList getByActive_PrevAndNext(Session session, MBMailingList mbMailingList, boolean active, OrderByComparator<MBMailingList> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(4 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); query.append(_FINDER_COLUMN_ACTIVE_ACTIVE_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(MBMailingListModelImpl.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(active); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(mbMailingList); for (Object value : values) { qPos.add(value); } } List<MBMailingList> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the message boards mailing lists where active = ? from the database. * * @param active the active */ @Override public void removeByActive(boolean active) { for (MBMailingList mbMailingList : findByActive(active, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(mbMailingList); } } /** * Returns the number of message boards mailing lists where active = ?. * * @param active the active * @return the number of matching message boards mailing lists */ @Override public int countByActive(boolean active) { FinderPath finderPath = FINDER_PATH_COUNT_BY_ACTIVE; Object[] finderArgs = new Object[] { active }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_MBMAILINGLIST_WHERE); query.append(_FINDER_COLUMN_ACTIVE_ACTIVE_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(active); count = (Long)q.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_ACTIVE_ACTIVE_2 = "mbMailingList.active = ?"; public static final FinderPath FINDER_PATH_FETCH_BY_G_C = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, MBMailingListImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByG_C", new String[] { Long.class.getName(), Long.class.getName() }, MBMailingListModelImpl.GROUPID_COLUMN_BITMASK | MBMailingListModelImpl.CATEGORYID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_C = new FinderPath(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_C", new String[] { Long.class.getName(), Long.class.getName() }); /** * Returns the message boards mailing list where groupId = ? and categoryId = ? or throws a {@link NoSuchMailingListException} if it could not be found. * * @param groupId the group ID * @param categoryId the category ID * @return the matching message boards mailing list * @throws NoSuchMailingListException if a matching message boards mailing list could not be found */ @Override public MBMailingList findByG_C(long groupId, long categoryId) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByG_C(groupId, categoryId); if (mbMailingList == null) { StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", categoryId="); msg.append(categoryId); msg.append(StringPool.CLOSE_CURLY_BRACE); if (_log.isDebugEnabled()) { _log.debug(msg.toString()); } throw new NoSuchMailingListException(msg.toString()); } return mbMailingList; } /** * Returns the message boards mailing list where groupId = ? and categoryId = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param categoryId the category ID * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByG_C(long groupId, long categoryId) { return fetchByG_C(groupId, categoryId, true); } /** * Returns the message boards mailing list where groupId = ? and categoryId = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param categoryId the category ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching message boards mailing list, or <code>null</code> if a matching message boards mailing list could not be found */ @Override public MBMailingList fetchByG_C(long groupId, long categoryId, boolean retrieveFromCache) { Object[] finderArgs = new Object[] { groupId, categoryId }; Object result = null; if (retrieveFromCache) { result = finderCache.getResult(FINDER_PATH_FETCH_BY_G_C, finderArgs, this); } if (result instanceof MBMailingList) { MBMailingList mbMailingList = (MBMailingList)result; if ((groupId != mbMailingList.getGroupId()) || (categoryId != mbMailingList.getCategoryId())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(4); query.append(_SQL_SELECT_MBMAILINGLIST_WHERE); query.append(_FINDER_COLUMN_G_C_GROUPID_2); query.append(_FINDER_COLUMN_G_C_CATEGORYID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(categoryId); List<MBMailingList> list = q.list(); if (list.isEmpty()) { finderCache.putResult(FINDER_PATH_FETCH_BY_G_C, finderArgs, list); } else { MBMailingList mbMailingList = list.get(0); result = mbMailingList; cacheResult(mbMailingList); if ((mbMailingList.getGroupId() != groupId) || (mbMailingList.getCategoryId() != categoryId)) { finderCache.putResult(FINDER_PATH_FETCH_BY_G_C, finderArgs, mbMailingList); } } } catch (Exception e) { finderCache.removeResult(FINDER_PATH_FETCH_BY_G_C, finderArgs); throw processException(e); } finally { closeSession(session); } } if (result instanceof List<?>) { return null; } else { return (MBMailingList)result; } } /** * Removes the message boards mailing list where groupId = ? and categoryId = ? from the database. * * @param groupId the group ID * @param categoryId the category ID * @return the message boards mailing list that was removed */ @Override public MBMailingList removeByG_C(long groupId, long categoryId) throws NoSuchMailingListException { MBMailingList mbMailingList = findByG_C(groupId, categoryId); return remove(mbMailingList); } /** * Returns the number of message boards mailing lists where groupId = ? and categoryId = ?. * * @param groupId the group ID * @param categoryId the category ID * @return the number of matching message boards mailing lists */ @Override public int countByG_C(long groupId, long categoryId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_C; Object[] finderArgs = new Object[] { groupId, categoryId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_MBMAILINGLIST_WHERE); query.append(_FINDER_COLUMN_G_C_GROUPID_2); query.append(_FINDER_COLUMN_G_C_CATEGORYID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(categoryId); count = (Long)q.uniqueResult(); finderCache.putResult(finderPath, finderArgs, count); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_G_C_GROUPID_2 = "mbMailingList.groupId = ? AND "; private static final String _FINDER_COLUMN_G_C_CATEGORYID_2 = "mbMailingList.categoryId = ?"; public MBMailingListPersistenceImpl() { setModelClass(MBMailingList.class); try { Field field = ReflectionUtil.getDeclaredField(BasePersistenceImpl.class, "_dbColumnNames"); Map<String, String> dbColumnNames = new HashMap<String, String>(); dbColumnNames.put("uuid", "uuid_"); dbColumnNames.put("active", "active_"); field.set(this, dbColumnNames); } catch (Exception e) { if (_log.isDebugEnabled()) { _log.debug(e, e); } } } /** * Caches the message boards mailing list in the entity cache if it is enabled. * * @param mbMailingList the message boards mailing list */ @Override public void cacheResult(MBMailingList mbMailingList) { entityCache.putResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, mbMailingList.getPrimaryKey(), mbMailingList); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, new Object[] { mbMailingList.getUuid(), mbMailingList.getGroupId() }, mbMailingList); finderCache.putResult(FINDER_PATH_FETCH_BY_G_C, new Object[] { mbMailingList.getGroupId(), mbMailingList.getCategoryId() }, mbMailingList); mbMailingList.resetOriginalValues(); } /** * Caches the message boards mailing lists in the entity cache if it is enabled. * * @param mbMailingLists the message boards mailing lists */ @Override public void cacheResult(List<MBMailingList> mbMailingLists) { for (MBMailingList mbMailingList : mbMailingLists) { if (entityCache.getResult( MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, mbMailingList.getPrimaryKey()) == null) { cacheResult(mbMailingList); } else { mbMailingList.resetOriginalValues(); } } } /** * Clears the cache for all message boards mailing lists. * * <p> * The {@link EntityCache} and {@link FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache() { entityCache.clearCache(MBMailingListImpl.class); finderCache.clearCache(FINDER_CLASS_NAME_ENTITY); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } /** * Clears the cache for the message boards mailing list. * * <p> * The {@link EntityCache} and {@link FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache(MBMailingList mbMailingList) { entityCache.removeResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, mbMailingList.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); clearUniqueFindersCache((MBMailingListModelImpl)mbMailingList, true); } @Override public void clearCache(List<MBMailingList> mbMailingLists) { finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); for (MBMailingList mbMailingList : mbMailingLists) { entityCache.removeResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, mbMailingList.getPrimaryKey()); clearUniqueFindersCache((MBMailingListModelImpl)mbMailingList, true); } } protected void cacheUniqueFindersCache( MBMailingListModelImpl mbMailingListModelImpl) { Object[] args = new Object[] { mbMailingListModelImpl.getUuid(), mbMailingListModelImpl.getGroupId() }; finderCache.putResult(FINDER_PATH_COUNT_BY_UUID_G, args, Long.valueOf(1), false); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, args, mbMailingListModelImpl, false); args = new Object[] { mbMailingListModelImpl.getGroupId(), mbMailingListModelImpl.getCategoryId() }; finderCache.putResult(FINDER_PATH_COUNT_BY_G_C, args, Long.valueOf(1), false); finderCache.putResult(FINDER_PATH_FETCH_BY_G_C, args, mbMailingListModelImpl, false); } protected void clearUniqueFindersCache( MBMailingListModelImpl mbMailingListModelImpl, boolean clearCurrent) { if (clearCurrent) { Object[] args = new Object[] { mbMailingListModelImpl.getUuid(), mbMailingListModelImpl.getGroupId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_G, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_UUID_G, args); } if ((mbMailingListModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_UUID_G.getColumnBitmask()) != 0) { Object[] args = new Object[] { mbMailingListModelImpl.getOriginalUuid(), mbMailingListModelImpl.getOriginalGroupId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_G, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_UUID_G, args); } if (clearCurrent) { Object[] args = new Object[] { mbMailingListModelImpl.getGroupId(), mbMailingListModelImpl.getCategoryId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_C, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_G_C, args); } if ((mbMailingListModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_G_C.getColumnBitmask()) != 0) { Object[] args = new Object[] { mbMailingListModelImpl.getOriginalGroupId(), mbMailingListModelImpl.getOriginalCategoryId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_C, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_G_C, args); } } /** * Creates a new message boards mailing list with the primary key. Does not add the message boards mailing list to the database. * * @param mailingListId the primary key for the new message boards mailing list * @return the new message boards mailing list */ @Override public MBMailingList create(long mailingListId) { MBMailingList mbMailingList = new MBMailingListImpl(); mbMailingList.setNew(true); mbMailingList.setPrimaryKey(mailingListId); String uuid = PortalUUIDUtil.generate(); mbMailingList.setUuid(uuid); mbMailingList.setCompanyId(companyProvider.getCompanyId()); return mbMailingList; } /** * Removes the message boards mailing list with the primary key from the database. Also notifies the appropriate model listeners. * * @param mailingListId the primary key of the message boards mailing list * @return the message boards mailing list that was removed * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList remove(long mailingListId) throws NoSuchMailingListException { return remove((Serializable)mailingListId); } /** * Removes the message boards mailing list with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the message boards mailing list * @return the message boards mailing list that was removed * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList remove(Serializable primaryKey) throws NoSuchMailingListException { Session session = null; try { session = openSession(); MBMailingList mbMailingList = (MBMailingList)session.get(MBMailingListImpl.class, primaryKey); if (mbMailingList == null) { if (_log.isDebugEnabled()) { _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchMailingListException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(mbMailingList); } catch (NoSuchMailingListException nsee) { throw nsee; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } @Override protected MBMailingList removeImpl(MBMailingList mbMailingList) { mbMailingList = toUnwrappedModel(mbMailingList); Session session = null; try { session = openSession(); if (!session.contains(mbMailingList)) { mbMailingList = (MBMailingList)session.get(MBMailingListImpl.class, mbMailingList.getPrimaryKeyObj()); } if (mbMailingList != null) { session.delete(mbMailingList); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } if (mbMailingList != null) { clearCache(mbMailingList); } return mbMailingList; } @Override public MBMailingList updateImpl(MBMailingList mbMailingList) { mbMailingList = toUnwrappedModel(mbMailingList); boolean isNew = mbMailingList.isNew(); MBMailingListModelImpl mbMailingListModelImpl = (MBMailingListModelImpl)mbMailingList; if (Validator.isNull(mbMailingList.getUuid())) { String uuid = PortalUUIDUtil.generate(); mbMailingList.setUuid(uuid); } ServiceContext serviceContext = ServiceContextThreadLocal.getServiceContext(); Date now = new Date(); if (isNew && (mbMailingList.getCreateDate() == null)) { if (serviceContext == null) { mbMailingList.setCreateDate(now); } else { mbMailingList.setCreateDate(serviceContext.getCreateDate(now)); } } if (!mbMailingListModelImpl.hasSetModifiedDate()) { if (serviceContext == null) { mbMailingList.setModifiedDate(now); } else { mbMailingList.setModifiedDate(serviceContext.getModifiedDate( now)); } } Session session = null; try { session = openSession(); if (mbMailingList.isNew()) { session.save(mbMailingList); mbMailingList.setNew(false); } else { mbMailingList = (MBMailingList)session.merge(mbMailingList); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); if (!MBMailingListModelImpl.COLUMN_BITMASK_ENABLED) { finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } else if (isNew) { Object[] args = new Object[] { mbMailingListModelImpl.getUuid() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID, args); args = new Object[] { mbMailingListModelImpl.getUuid(), mbMailingListModelImpl.getCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C, args); args = new Object[] { mbMailingListModelImpl.getActive() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_ACTIVE, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_ACTIVE, args); finderCache.removeResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL, FINDER_ARGS_EMPTY); } else { if ((mbMailingListModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID.getColumnBitmask()) != 0) { Object[] args = new Object[] { mbMailingListModelImpl.getOriginalUuid() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID, args); args = new Object[] { mbMailingListModelImpl.getUuid() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID, args); } if ((mbMailingListModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C.getColumnBitmask()) != 0) { Object[] args = new Object[] { mbMailingListModelImpl.getOriginalUuid(), mbMailingListModelImpl.getOriginalCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C, args); args = new Object[] { mbMailingListModelImpl.getUuid(), mbMailingListModelImpl.getCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C, args); } if ((mbMailingListModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_ACTIVE.getColumnBitmask()) != 0) { Object[] args = new Object[] { mbMailingListModelImpl.getOriginalActive() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_ACTIVE, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_ACTIVE, args); args = new Object[] { mbMailingListModelImpl.getActive() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_ACTIVE, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_ACTIVE, args); } } entityCache.putResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, mbMailingList.getPrimaryKey(), mbMailingList, false); clearUniqueFindersCache(mbMailingListModelImpl, false); cacheUniqueFindersCache(mbMailingListModelImpl); mbMailingList.resetOriginalValues(); return mbMailingList; } protected MBMailingList toUnwrappedModel(MBMailingList mbMailingList) { if (mbMailingList instanceof MBMailingListImpl) { return mbMailingList; } MBMailingListImpl mbMailingListImpl = new MBMailingListImpl(); mbMailingListImpl.setNew(mbMailingList.isNew()); mbMailingListImpl.setPrimaryKey(mbMailingList.getPrimaryKey()); mbMailingListImpl.setUuid(mbMailingList.getUuid()); mbMailingListImpl.setMailingListId(mbMailingList.getMailingListId()); mbMailingListImpl.setGroupId(mbMailingList.getGroupId()); mbMailingListImpl.setCompanyId(mbMailingList.getCompanyId()); mbMailingListImpl.setUserId(mbMailingList.getUserId()); mbMailingListImpl.setUserName(mbMailingList.getUserName()); mbMailingListImpl.setCreateDate(mbMailingList.getCreateDate()); mbMailingListImpl.setModifiedDate(mbMailingList.getModifiedDate()); mbMailingListImpl.setCategoryId(mbMailingList.getCategoryId()); mbMailingListImpl.setEmailAddress(mbMailingList.getEmailAddress()); mbMailingListImpl.setInProtocol(mbMailingList.getInProtocol()); mbMailingListImpl.setInServerName(mbMailingList.getInServerName()); mbMailingListImpl.setInServerPort(mbMailingList.getInServerPort()); mbMailingListImpl.setInUseSSL(mbMailingList.isInUseSSL()); mbMailingListImpl.setInUserName(mbMailingList.getInUserName()); mbMailingListImpl.setInPassword(mbMailingList.getInPassword()); mbMailingListImpl.setInReadInterval(mbMailingList.getInReadInterval()); mbMailingListImpl.setOutEmailAddress(mbMailingList.getOutEmailAddress()); mbMailingListImpl.setOutCustom(mbMailingList.isOutCustom()); mbMailingListImpl.setOutServerName(mbMailingList.getOutServerName()); mbMailingListImpl.setOutServerPort(mbMailingList.getOutServerPort()); mbMailingListImpl.setOutUseSSL(mbMailingList.isOutUseSSL()); mbMailingListImpl.setOutUserName(mbMailingList.getOutUserName()); mbMailingListImpl.setOutPassword(mbMailingList.getOutPassword()); mbMailingListImpl.setAllowAnonymous(mbMailingList.isAllowAnonymous()); mbMailingListImpl.setActive(mbMailingList.isActive()); return mbMailingListImpl; } /** * Returns the message boards mailing list with the primary key or throws a {@link com.liferay.portal.kernel.exception.NoSuchModelException} if it could not be found. * * @param primaryKey the primary key of the message boards mailing list * @return the message boards mailing list * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList findByPrimaryKey(Serializable primaryKey) throws NoSuchMailingListException { MBMailingList mbMailingList = fetchByPrimaryKey(primaryKey); if (mbMailingList == null) { if (_log.isDebugEnabled()) { _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchMailingListException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return mbMailingList; } /** * Returns the message boards mailing list with the primary key or throws a {@link NoSuchMailingListException} if it could not be found. * * @param mailingListId the primary key of the message boards mailing list * @return the message boards mailing list * @throws NoSuchMailingListException if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList findByPrimaryKey(long mailingListId) throws NoSuchMailingListException { return findByPrimaryKey((Serializable)mailingListId); } /** * Returns the message boards mailing list with the primary key or returns <code>null</code> if it could not be found. * * @param primaryKey the primary key of the message boards mailing list * @return the message boards mailing list, or <code>null</code> if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList fetchByPrimaryKey(Serializable primaryKey) { Serializable serializable = entityCache.getResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, primaryKey); if (serializable == nullModel) { return null; } MBMailingList mbMailingList = (MBMailingList)serializable; if (mbMailingList == null) { Session session = null; try { session = openSession(); mbMailingList = (MBMailingList)session.get(MBMailingListImpl.class, primaryKey); if (mbMailingList != null) { cacheResult(mbMailingList); } else { entityCache.putResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, primaryKey, nullModel); } } catch (Exception e) { entityCache.removeResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, primaryKey); throw processException(e); } finally { closeSession(session); } } return mbMailingList; } /** * Returns the message boards mailing list with the primary key or returns <code>null</code> if it could not be found. * * @param mailingListId the primary key of the message boards mailing list * @return the message boards mailing list, or <code>null</code> if a message boards mailing list with the primary key could not be found */ @Override public MBMailingList fetchByPrimaryKey(long mailingListId) { return fetchByPrimaryKey((Serializable)mailingListId); } @Override public Map<Serializable, MBMailingList> fetchByPrimaryKeys( Set<Serializable> primaryKeys) { if (primaryKeys.isEmpty()) { return Collections.emptyMap(); } Map<Serializable, MBMailingList> map = new HashMap<Serializable, MBMailingList>(); if (primaryKeys.size() == 1) { Iterator<Serializable> iterator = primaryKeys.iterator(); Serializable primaryKey = iterator.next(); MBMailingList mbMailingList = fetchByPrimaryKey(primaryKey); if (mbMailingList != null) { map.put(primaryKey, mbMailingList); } return map; } Set<Serializable> uncachedPrimaryKeys = null; for (Serializable primaryKey : primaryKeys) { Serializable serializable = entityCache.getResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, primaryKey); if (serializable != nullModel) { if (serializable == null) { if (uncachedPrimaryKeys == null) { uncachedPrimaryKeys = new HashSet<Serializable>(); } uncachedPrimaryKeys.add(primaryKey); } else { map.put(primaryKey, (MBMailingList)serializable); } } } if (uncachedPrimaryKeys == null) { return map; } StringBundler query = new StringBundler((uncachedPrimaryKeys.size() * 2) + 1); query.append(_SQL_SELECT_MBMAILINGLIST_WHERE_PKS_IN); for (Serializable primaryKey : uncachedPrimaryKeys) { query.append((long)primaryKey); query.append(StringPool.COMMA); } query.setIndex(query.index() - 1); query.append(StringPool.CLOSE_PARENTHESIS); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); for (MBMailingList mbMailingList : (List<MBMailingList>)q.list()) { map.put(mbMailingList.getPrimaryKeyObj(), mbMailingList); cacheResult(mbMailingList); uncachedPrimaryKeys.remove(mbMailingList.getPrimaryKeyObj()); } for (Serializable primaryKey : uncachedPrimaryKeys) { entityCache.putResult(MBMailingListModelImpl.ENTITY_CACHE_ENABLED, MBMailingListImpl.class, primaryKey, nullModel); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } return map; } /** * Returns all the message boards mailing lists. * * @return the message boards mailing lists */ @Override public List<MBMailingList> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the message boards mailing lists. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @return the range of message boards mailing lists */ @Override public List<MBMailingList> findAll(int start, int end) { return findAll(start, end, null); } /** * Returns an ordered range of all the message boards mailing lists. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of message boards mailing lists */ @Override public List<MBMailingList> findAll(int start, int end, OrderByComparator<MBMailingList> orderByComparator) { return findAll(start, end, orderByComparator, true); } /** * Returns an ordered range of all the message boards mailing lists. * * <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 QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of message boards mailing lists * @param end the upper bound of the range of message boards mailing lists (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of message boards mailing lists */ @Override public List<MBMailingList> findAll(int start, int end, OrderByComparator<MBMailingList> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; 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<MBMailingList> list = null; if (retrieveFromCache) { list = (List<MBMailingList>)finderCache.getResult(finderPath, finderArgs, this); } if (list == null) { StringBundler query = null; String sql = null; if (orderByComparator != null) { query = new StringBundler(2 + (orderByComparator.getOrderByFields().length * 2)); query.append(_SQL_SELECT_MBMAILINGLIST); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_MBMAILINGLIST; if (pagination) { sql = sql.concat(MBMailingListModelImpl.ORDER_BY_JPQL); } } Session session = null; try { session = openSession(); Query q = session.createQuery(sql); if (!pagination) { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<MBMailingList>)QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; } /** * Removes all the message boards mailing lists from the database. * */ @Override public void removeAll() { for (MBMailingList mbMailingList : findAll()) { remove(mbMailingList); } } /** * Returns the number of message boards mailing lists. * * @return the number of message boards mailing lists */ @Override public int countAll() { Long count = (Long)finderCache.getResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, this); if (count == null) { Session session = null; try { session = openSession(); Query q = session.createQuery(_SQL_COUNT_MBMAILINGLIST); count = (Long)q.uniqueResult(); finderCache.putResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, count); } catch (Exception e) { finderCache.removeResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } @Override public Set<String> getBadColumnNames() { return _badColumnNames; } @Override protected Map<String, Integer> getTableColumnsMap() { return MBMailingListModelImpl.TABLE_COLUMNS_MAP; } /** * Initializes the message boards mailing list persistence. */ public void afterPropertiesSet() { } public void destroy() { entityCache.removeCache(MBMailingListImpl.class.getName()); finderCache.removeCache(FINDER_CLASS_NAME_ENTITY); finderCache.removeCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.removeCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @BeanReference(type = CompanyProviderWrapper.class) protected CompanyProvider companyProvider; protected EntityCache entityCache = EntityCacheUtil.getEntityCache(); protected FinderCache finderCache = FinderCacheUtil.getFinderCache(); private static final String _SQL_SELECT_MBMAILINGLIST = "SELECT mbMailingList FROM MBMailingList mbMailingList"; private static final String _SQL_SELECT_MBMAILINGLIST_WHERE_PKS_IN = "SELECT mbMailingList FROM MBMailingList mbMailingList WHERE mailingListId IN ("; private static final String _SQL_SELECT_MBMAILINGLIST_WHERE = "SELECT mbMailingList FROM MBMailingList mbMailingList WHERE "; private static final String _SQL_COUNT_MBMAILINGLIST = "SELECT COUNT(mbMailingList) FROM MBMailingList mbMailingList"; private static final String _SQL_COUNT_MBMAILINGLIST_WHERE = "SELECT COUNT(mbMailingList) FROM MBMailingList mbMailingList WHERE "; private static final String _ORDER_BY_ENTITY_ALIAS = "mbMailingList."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No MBMailingList exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No MBMailingList exists with the key {"; private static final Log _log = LogFactoryUtil.getLog(MBMailingListPersistenceImpl.class); private static final Set<String> _badColumnNames = SetUtil.fromArray(new String[] { "uuid", "active" }); }