/** * 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.documentlibrary.service.persistence.impl; import aQute.bnd.annotation.ProviderType; import com.liferay.document.library.kernel.exception.NoSuchFolderException; import com.liferay.document.library.kernel.model.DLFolder; import com.liferay.document.library.kernel.service.persistence.DLFileEntryTypePersistence; import com.liferay.document.library.kernel.service.persistence.DLFolderPersistence; 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.SQLQuery; 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.security.permission.InlineSQLHelperUtil; 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.service.persistence.impl.TableMapper; import com.liferay.portal.kernel.service.persistence.impl.TableMapperFactory; import com.liferay.portal.kernel.util.ArrayUtil; import com.liferay.portal.kernel.util.CharPool; import com.liferay.portal.kernel.util.ListUtil; 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.StringUtil; import com.liferay.portal.kernel.util.Validator; import com.liferay.portal.kernel.uuid.PortalUUIDUtil; import com.liferay.portlet.documentlibrary.model.impl.DLFolderImpl; import com.liferay.portlet.documentlibrary.model.impl.DLFolderModelImpl; 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 document library folder service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author Brian Wing Shun Chan * @see DLFolderPersistence * @see com.liferay.document.library.kernel.service.persistence.DLFolderUtil * @generated */ @ProviderType public class DLFolderPersistenceImpl extends BasePersistenceImpl<DLFolder> implements DLFolderPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link DLFolderUtil} to access the document library folder persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = DLFolderImpl.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(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.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(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.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(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByUuid", new String[] { String.class.getName() }, DLFolderModelImpl.UUID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_UUID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByUuid", new String[] { String.class.getName() }); /** * Returns all the document library folders where uuid = ?. * * @param uuid the uuid * @return the matching document library folders */ @Override public List<DLFolder> findByUuid(String uuid) { return findByUuid(uuid, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders 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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByUuid(String uuid, int start, int end) { return findByUuid(uuid, start, end, null); } /** * Returns an ordered range of all the document library folders 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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByUuid(uuid, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders 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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByUuid(String uuid, int start, int end, OrderByComparator<DLFolder> 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<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if (!Objects.equals(uuid, dlFolder.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_DLFOLDER_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(DLFolderModelImpl.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<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder 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 document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByUuid_First(String uuid, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByUuid_First(uuid, orderByComparator); if (dlFolder != null) { return dlFolder; } 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 NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder 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 document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByUuid_First(String uuid, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByUuid(uuid, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder 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 document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByUuid_Last(String uuid, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByUuid_Last(uuid, orderByComparator); if (dlFolder != null) { return dlFolder; } 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 NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder 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 document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByUuid_Last(String uuid, OrderByComparator<DLFolder> orderByComparator) { int count = countByUuid(uuid); if (count == 0) { return null; } List<DLFolder> list = findByUuid(uuid, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where uuid = ?. * * @param folderId the primary key of the current document library folder * @param uuid the uuid * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByUuid_PrevAndNext(long folderId, String uuid, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByUuid_PrevAndNext(session, dlFolder, uuid, orderByComparator, true); array[1] = dlFolder; array[2] = getByUuid_PrevAndNext(session, dlFolder, uuid, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByUuid_PrevAndNext(Session session, DLFolder dlFolder, String uuid, OrderByComparator<DLFolder> 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_DLFOLDER_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(DLFolderModelImpl.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(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where uuid = ? from the database. * * @param uuid the uuid */ @Override public void removeByUuid(String uuid) { for (DLFolder dlFolder : findByUuid(uuid, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where uuid = ?. * * @param uuid the uuid * @return the number of matching document library folders */ @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_DLFOLDER_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 = "dlFolder.uuid IS NULL"; private static final String _FINDER_COLUMN_UUID_UUID_2 = "dlFolder.uuid = ?"; private static final String _FINDER_COLUMN_UUID_UUID_3 = "(dlFolder.uuid IS NULL OR dlFolder.uuid = '')"; public static final FinderPath FINDER_PATH_FETCH_BY_UUID_G = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByUUID_G", new String[] { String.class.getName(), Long.class.getName() }, DLFolderModelImpl.UUID_COLUMN_BITMASK | DLFolderModelImpl.GROUPID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_UUID_G = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByUUID_G", new String[] { String.class.getName(), Long.class.getName() }); /** * Returns the document library folder where uuid = ? and groupId = ? or throws a {@link NoSuchFolderException} if it could not be found. * * @param uuid the uuid * @param groupId the group ID * @return the matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByUUID_G(String uuid, long groupId) throws NoSuchFolderException { DLFolder dlFolder = fetchByUUID_G(uuid, groupId); if (dlFolder == 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 NoSuchFolderException(msg.toString()); } return dlFolder; } /** * Returns the document library folder 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 document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByUUID_G(String uuid, long groupId) { return fetchByUUID_G(uuid, groupId, true); } /** * Returns the document library folder 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 document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder 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 DLFolder) { DLFolder dlFolder = (DLFolder)result; if (!Objects.equals(uuid, dlFolder.getUuid()) || (groupId != dlFolder.getGroupId())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(4); query.append(_SQL_SELECT_DLFOLDER_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<DLFolder> list = q.list(); if (list.isEmpty()) { finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, finderArgs, list); } else { DLFolder dlFolder = list.get(0); result = dlFolder; cacheResult(dlFolder); if ((dlFolder.getUuid() == null) || !dlFolder.getUuid().equals(uuid) || (dlFolder.getGroupId() != groupId)) { finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, finderArgs, dlFolder); } } } 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 (DLFolder)result; } } /** * Removes the document library folder where uuid = ? and groupId = ? from the database. * * @param uuid the uuid * @param groupId the group ID * @return the document library folder that was removed */ @Override public DLFolder removeByUUID_G(String uuid, long groupId) throws NoSuchFolderException { DLFolder dlFolder = findByUUID_G(uuid, groupId); return remove(dlFolder); } /** * Returns the number of document library folders where uuid = ? and groupId = ?. * * @param uuid the uuid * @param groupId the group ID * @return the number of matching document library folders */ @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_DLFOLDER_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 = "dlFolder.uuid IS NULL AND "; private static final String _FINDER_COLUMN_UUID_G_UUID_2 = "dlFolder.uuid = ? AND "; private static final String _FINDER_COLUMN_UUID_G_UUID_3 = "(dlFolder.uuid IS NULL OR dlFolder.uuid = '') AND "; private static final String _FINDER_COLUMN_UUID_G_GROUPID_2 = "dlFolder.groupId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.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(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByUuid_C", new String[] { String.class.getName(), Long.class.getName() }, DLFolderModelImpl.UUID_COLUMN_BITMASK | DLFolderModelImpl.COMPANYID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_UUID_C = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByUuid_C", new String[] { String.class.getName(), Long.class.getName() }); /** * Returns all the document library folders where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the matching document library folders */ @Override public List<DLFolder> findByUuid_C(String uuid, long companyId) { return findByUuid_C(uuid, companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders 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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> 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 document library folders 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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByUuid_C(uuid, companyId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders 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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByUuid_C(String uuid, long companyId, int start, int end, OrderByComparator<DLFolder> 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<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if (!Objects.equals(uuid, dlFolder.getUuid()) || (companyId != dlFolder.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_DLFOLDER_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(DLFolderModelImpl.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<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder 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 document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByUuid_C_First(uuid, companyId, orderByComparator); if (dlFolder != null) { return dlFolder; } 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 NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder 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 document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByUuid_C_First(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByUuid_C(uuid, companyId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder 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 document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByUuid_C_Last(uuid, companyId, orderByComparator); if (dlFolder != null) { return dlFolder; } 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 NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder 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 document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByUuid_C_Last(String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) { int count = countByUuid_C(uuid, companyId); if (count == 0) { return null; } List<DLFolder> list = findByUuid_C(uuid, companyId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where uuid = ? and companyId = ?. * * @param folderId the primary key of the current document library folder * @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 document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByUuid_C_PrevAndNext(long folderId, String uuid, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByUuid_C_PrevAndNext(session, dlFolder, uuid, companyId, orderByComparator, true); array[1] = dlFolder; array[2] = getByUuid_C_PrevAndNext(session, dlFolder, uuid, companyId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByUuid_C_PrevAndNext(Session session, DLFolder dlFolder, String uuid, long companyId, OrderByComparator<DLFolder> 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_DLFOLDER_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(DLFolderModelImpl.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(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders 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 (DLFolder dlFolder : findByUuid_C(uuid, companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where uuid = ? and companyId = ?. * * @param uuid the uuid * @param companyId the company ID * @return the number of matching document library folders */ @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_DLFOLDER_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 = "dlFolder.uuid IS NULL AND "; private static final String _FINDER_COLUMN_UUID_C_UUID_2 = "dlFolder.uuid = ? AND "; private static final String _FINDER_COLUMN_UUID_C_UUID_3 = "(dlFolder.uuid IS NULL OR dlFolder.uuid = '') AND "; private static final String _FINDER_COLUMN_UUID_C_COMPANYID_2 = "dlFolder.companyId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_GROUPID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByGroupId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByGroupId", new String[] { Long.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_GROUPID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByGroupId", new String[] { Long.class.getName() }); /** * Returns all the document library folders where groupId = ?. * * @param groupId the group ID * @return the matching document library folders */ @Override public List<DLFolder> findByGroupId(long groupId) { return findByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByGroupId(long groupId, int start, int end) { return findByGroupId(groupId, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByGroupId(groupId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> 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_GROUPID; finderArgs = new Object[] { groupId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_GROUPID; finderArgs = new Object[] { groupId, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByGroupId_First(groupId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByGroupId_First(long groupId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByGroupId(groupId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByGroupId_Last(groupId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByGroupId_Last(long groupId, OrderByComparator<DLFolder> orderByComparator) { int count = countByGroupId(groupId); if (count == 0) { return null; } List<DLFolder> list = findByGroupId(groupId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByGroupId_PrevAndNext(long folderId, long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByGroupId_PrevAndNext(session, dlFolder, groupId, orderByComparator, true); array[1] = dlFolder; array[2] = getByGroupId_PrevAndNext(session, dlFolder, groupId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByGroupId_PrevAndNext(Session session, DLFolder dlFolder, long groupId, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_GROUPID_GROUPID_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(DLFolderModelImpl.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(groupId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ?. * * @param groupId the group ID * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByGroupId(long groupId) { return filterFindByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByGroupId(long groupId, int start, int end) { return filterFindByGroupId(groupId, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByGroupId(long groupId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByGroupId(groupId, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(4); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByGroupId_PrevAndNext(long folderId, long groupId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByGroupId_PrevAndNext(folderId, groupId, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByGroupId_PrevAndNext(session, dlFolder, groupId, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByGroupId_PrevAndNext(session, dlFolder, groupId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByGroupId_PrevAndNext(Session session, DLFolder dlFolder, long groupId, OrderByComparator<DLFolder> 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); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? from the database. * * @param groupId the group ID */ @Override public void removeByGroupId(long groupId) { for (DLFolder dlFolder : findByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ?. * * @param groupId the group ID * @return the number of matching document library folders */ @Override public int countByGroupId(long groupId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_GROUPID; Object[] finderArgs = new Object[] { groupId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ?. * * @param groupId the group ID * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByGroupId(long groupId) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByGroupId(groupId); } StringBundler query = new StringBundler(2); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_GROUPID_GROUPID_2 = "dlFolder.groupId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_COMPANYID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByCompanyId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByCompanyId", new String[] { Long.class.getName() }, DLFolderModelImpl.COMPANYID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_COMPANYID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByCompanyId", new String[] { Long.class.getName() }); /** * Returns all the document library folders where companyId = ?. * * @param companyId the company ID * @return the matching document library folders */ @Override public List<DLFolder> findByCompanyId(long companyId) { return findByCompanyId(companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where 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 DLFolderModelImpl}. 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 companyId the company ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByCompanyId(long companyId, int start, int end) { return findByCompanyId(companyId, start, end, null); } /** * Returns an ordered range of all the document library folders where 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 DLFolderModelImpl}. 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 companyId the company ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByCompanyId(companyId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where 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 DLFolderModelImpl}. 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 companyId the company ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByCompanyId(long companyId, int start, int end, OrderByComparator<DLFolder> 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_COMPANYID; finderArgs = new Object[] { companyId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_COMPANYID; finderArgs = new Object[] { companyId, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((companyId != dlFolder.getCompanyId())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_COMPANYID_COMPANYID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(companyId); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByCompanyId_First(companyId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("companyId="); msg.append(companyId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByCompanyId_First(long companyId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByCompanyId(companyId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByCompanyId_Last(companyId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("companyId="); msg.append(companyId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByCompanyId_Last(long companyId, OrderByComparator<DLFolder> orderByComparator) { int count = countByCompanyId(companyId); if (count == 0) { return null; } List<DLFolder> list = findByCompanyId(companyId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where companyId = ?. * * @param folderId the primary key of the current document library folder * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByCompanyId_PrevAndNext(long folderId, long companyId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByCompanyId_PrevAndNext(session, dlFolder, companyId, orderByComparator, true); array[1] = dlFolder; array[2] = getByCompanyId_PrevAndNext(session, dlFolder, companyId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByCompanyId_PrevAndNext(Session session, DLFolder dlFolder, long companyId, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_COMPANYID_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(DLFolderModelImpl.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(companyId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where companyId = ? from the database. * * @param companyId the company ID */ @Override public void removeByCompanyId(long companyId) { for (DLFolder dlFolder : findByCompanyId(companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where companyId = ?. * * @param companyId the company ID * @return the number of matching document library folders */ @Override public int countByCompanyId(long companyId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_COMPANYID; Object[] finderArgs = new Object[] { companyId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_COMPANYID_COMPANYID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); 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_COMPANYID_COMPANYID_2 = "dlFolder.companyId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_REPOSITORYID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByRepositoryId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_REPOSITORYID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByRepositoryId", new String[] { Long.class.getName() }, DLFolderModelImpl.REPOSITORYID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_REPOSITORYID = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByRepositoryId", new String[] { Long.class.getName() }); /** * Returns all the document library folders where repositoryId = ?. * * @param repositoryId the repository ID * @return the matching document library folders */ @Override public List<DLFolder> findByRepositoryId(long repositoryId) { return findByRepositoryId(repositoryId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where repositoryId = ?. * * <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 DLFolderModelImpl}. 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 repositoryId the repository ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByRepositoryId(long repositoryId, int start, int end) { return findByRepositoryId(repositoryId, start, end, null); } /** * Returns an ordered range of all the document library folders where repositoryId = ?. * * <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 DLFolderModelImpl}. 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 repositoryId the repository ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByRepositoryId(repositoryId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where repositoryId = ?. * * <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 DLFolderModelImpl}. 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 repositoryId the repository ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByRepositoryId(long repositoryId, int start, int end, OrderByComparator<DLFolder> 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_REPOSITORYID; finderArgs = new Object[] { repositoryId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_REPOSITORYID; finderArgs = new Object[] { repositoryId, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((repositoryId != dlFolder.getRepositoryId())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_REPOSITORYID_REPOSITORYID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(repositoryId); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where repositoryId = ?. * * @param repositoryId the repository ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByRepositoryId_First(repositoryId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("repositoryId="); msg.append(repositoryId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where repositoryId = ?. * * @param repositoryId the repository ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByRepositoryId_First(long repositoryId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByRepositoryId(repositoryId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where repositoryId = ?. * * @param repositoryId the repository ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByRepositoryId_Last(repositoryId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("repositoryId="); msg.append(repositoryId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where repositoryId = ?. * * @param repositoryId the repository ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByRepositoryId_Last(long repositoryId, OrderByComparator<DLFolder> orderByComparator) { int count = countByRepositoryId(repositoryId); if (count == 0) { return null; } List<DLFolder> list = findByRepositoryId(repositoryId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where repositoryId = ?. * * @param folderId the primary key of the current document library folder * @param repositoryId the repository ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByRepositoryId_PrevAndNext(long folderId, long repositoryId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByRepositoryId_PrevAndNext(session, dlFolder, repositoryId, orderByComparator, true); array[1] = dlFolder; array[2] = getByRepositoryId_PrevAndNext(session, dlFolder, repositoryId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByRepositoryId_PrevAndNext(Session session, DLFolder dlFolder, long repositoryId, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_REPOSITORYID_REPOSITORYID_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(DLFolderModelImpl.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(repositoryId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where repositoryId = ? from the database. * * @param repositoryId the repository ID */ @Override public void removeByRepositoryId(long repositoryId) { for (DLFolder dlFolder : findByRepositoryId(repositoryId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where repositoryId = ?. * * @param repositoryId the repository ID * @return the number of matching document library folders */ @Override public int countByRepositoryId(long repositoryId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_REPOSITORYID; Object[] finderArgs = new Object[] { repositoryId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_REPOSITORYID_REPOSITORYID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(repositoryId); 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_REPOSITORYID_REPOSITORYID_2 = "dlFolder.repositoryId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_G_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByG_P", new String[] { Long.class.getName(), Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByG_P", new String[] { Long.class.getName(), Long.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_P", new String[] { Long.class.getName(), Long.class.getName() }); /** * Returns all the document library folders where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @return the matching document library folders */ @Override public List<DLFolder> findByG_P(long groupId, long parentFolderId) { return findByG_P(groupId, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByG_P(long groupId, long parentFolderId, int start, int end) { return findByG_P(groupId, parentFolderId, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByG_P(groupId, parentFolderId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> 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_G_P; finderArgs = new Object[] { groupId, parentFolderId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_P; finderArgs = new Object[] { groupId, parentFolderId, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId()) || (parentFolderId != dlFolder.getParentFolderId())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_GROUPID_2); query.append(_FINDER_COLUMN_G_P_PARENTFOLDERID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); qPos.add(parentFolderId); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_P_First(groupId, parentFolderId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_P_First(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByG_P(groupId, parentFolderId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_P_Last(groupId, parentFolderId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_P_Last(long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) { int count = countByG_P(groupId, parentFolderId); if (count == 0) { return null; } List<DLFolder> list = findByG_P(groupId, parentFolderId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and parentFolderId = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByG_P_PrevAndNext(long folderId, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByG_P_PrevAndNext(session, dlFolder, groupId, parentFolderId, orderByComparator, true); array[1] = dlFolder; array[2] = getByG_P_PrevAndNext(session, dlFolder, groupId, parentFolderId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByG_P_PrevAndNext(Session session, DLFolder dlFolder, long groupId, long parentFolderId, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_GROUPID_2); query.append(_FINDER_COLUMN_G_P_PARENTFOLDERID_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(DLFolderModelImpl.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(groupId); qPos.add(parentFolderId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_P(long groupId, long parentFolderId) { return filterFindByG_P(groupId, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_P(long groupId, long parentFolderId, int start, int end) { return filterFindByG_P(groupId, parentFolderId, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_P(long groupId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_P(groupId, parentFolderId, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(4 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(5); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_P_GROUPID_2); query.append(_FINDER_COLUMN_G_P_PARENTFOLDERID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(parentFolderId); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and parentFolderId = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByG_P_PrevAndNext(long folderId, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_P_PrevAndNext(folderId, groupId, parentFolderId, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByG_P_PrevAndNext(session, dlFolder, groupId, parentFolderId, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByG_P_PrevAndNext(session, dlFolder, groupId, parentFolderId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByG_P_PrevAndNext(Session session, DLFolder dlFolder, long groupId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(5); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_P_GROUPID_2); query.append(_FINDER_COLUMN_G_P_PARENTFOLDERID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(parentFolderId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? and parentFolderId = ? from the database. * * @param groupId the group ID * @param parentFolderId the parent folder ID */ @Override public void removeByG_P(long groupId, long parentFolderId) { for (DLFolder dlFolder : findByG_P(groupId, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @return the number of matching document library folders */ @Override public int countByG_P(long groupId, long parentFolderId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_P; Object[] finderArgs = new Object[] { groupId, parentFolderId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_GROUPID_2); query.append(_FINDER_COLUMN_G_P_PARENTFOLDERID_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(parentFolderId); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ? and parentFolderId = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByG_P(long groupId, long parentFolderId) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByG_P(groupId, parentFolderId); } StringBundler query = new StringBundler(3); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_GROUPID_2); query.append(_FINDER_COLUMN_G_P_PARENTFOLDERID_2); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(parentFolderId); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_G_P_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_P_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_C_NOTS = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByC_NotS", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_COUNT_BY_C_NOTS = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "countByC_NotS", new String[] { Long.class.getName(), Integer.class.getName() }); /** * Returns all the document library folders where companyId = ? and status ≠ ?. * * @param companyId the company ID * @param status the status * @return the matching document library folders */ @Override public List<DLFolder> findByC_NotS(long companyId, int status) { return findByC_NotS(companyId, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where companyId = ? and status ≠ ?. * * <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 DLFolderModelImpl}. 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 companyId the company ID * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByC_NotS(long companyId, int status, int start, int end) { return findByC_NotS(companyId, status, start, end, null); } /** * Returns an ordered range of all the document library folders where companyId = ? and status ≠ ?. * * <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 DLFolderModelImpl}. 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 companyId the company ID * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByC_NotS(companyId, status, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where companyId = ? and status ≠ ?. * * <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 DLFolderModelImpl}. 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 companyId the company ID * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByC_NotS(long companyId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_C_NOTS; finderArgs = new Object[] { companyId, status, start, end, orderByComparator }; List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((companyId != dlFolder.getCompanyId()) || (status == dlFolder.getStatus())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_C_NOTS_COMPANYID_2); query.append(_FINDER_COLUMN_C_NOTS_STATUS_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(companyId); qPos.add(status); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where companyId = ? and status ≠ ?. * * @param companyId the company ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByC_NotS_First(companyId, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("companyId="); msg.append(companyId); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where companyId = ? and status ≠ ?. * * @param companyId the company ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByC_NotS_First(long companyId, int status, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByC_NotS(companyId, status, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?. * * @param companyId the company ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByC_NotS_Last(companyId, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("companyId="); msg.append(companyId); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where companyId = ? and status ≠ ?. * * @param companyId the company ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByC_NotS_Last(long companyId, int status, OrderByComparator<DLFolder> orderByComparator) { int count = countByC_NotS(companyId, status); if (count == 0) { return null; } List<DLFolder> list = findByC_NotS(companyId, status, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where companyId = ? and status ≠ ?. * * @param folderId the primary key of the current document library folder * @param companyId the company ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByC_NotS_PrevAndNext(long folderId, long companyId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByC_NotS_PrevAndNext(session, dlFolder, companyId, status, orderByComparator, true); array[1] = dlFolder; array[2] = getByC_NotS_PrevAndNext(session, dlFolder, companyId, status, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByC_NotS_PrevAndNext(Session session, DLFolder dlFolder, long companyId, int status, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_C_NOTS_COMPANYID_2); query.append(_FINDER_COLUMN_C_NOTS_STATUS_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(DLFolderModelImpl.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(companyId); qPos.add(status); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where companyId = ? and status ≠ ? from the database. * * @param companyId the company ID * @param status the status */ @Override public void removeByC_NotS(long companyId, int status) { for (DLFolder dlFolder : findByC_NotS(companyId, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where companyId = ? and status ≠ ?. * * @param companyId the company ID * @param status the status * @return the number of matching document library folders */ @Override public int countByC_NotS(long companyId, int status) { FinderPath finderPath = FINDER_PATH_WITH_PAGINATION_COUNT_BY_C_NOTS; Object[] finderArgs = new Object[] { companyId, status }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_C_NOTS_COMPANYID_2); query.append(_FINDER_COLUMN_C_NOTS_STATUS_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(companyId); qPos.add(status); 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_C_NOTS_COMPANYID_2 = "dlFolder.companyId = ? AND "; private static final String _FINDER_COLUMN_C_NOTS_STATUS_2 = "dlFolder.status != ?"; public static final FinderPath FINDER_PATH_FETCH_BY_R_M = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByR_M", new String[] { Long.class.getName(), Boolean.class.getName() }, DLFolderModelImpl.REPOSITORYID_COLUMN_BITMASK | DLFolderModelImpl.MOUNTPOINT_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_R_M = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByR_M", new String[] { Long.class.getName(), Boolean.class.getName() }); /** * Returns the document library folder where repositoryId = ? and mountPoint = ? or throws a {@link NoSuchFolderException} if it could not be found. * * @param repositoryId the repository ID * @param mountPoint the mount point * @return the matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByR_M(long repositoryId, boolean mountPoint) throws NoSuchFolderException { DLFolder dlFolder = fetchByR_M(repositoryId, mountPoint); if (dlFolder == null) { StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("repositoryId="); msg.append(repositoryId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(StringPool.CLOSE_CURLY_BRACE); if (_log.isDebugEnabled()) { _log.debug(msg.toString()); } throw new NoSuchFolderException(msg.toString()); } return dlFolder; } /** * Returns the document library folder where repositoryId = ? and mountPoint = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param repositoryId the repository ID * @param mountPoint the mount point * @return the matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByR_M(long repositoryId, boolean mountPoint) { return fetchByR_M(repositoryId, mountPoint, true); } /** * Returns the document library folder where repositoryId = ? and mountPoint = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param repositoryId the repository ID * @param mountPoint the mount point * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByR_M(long repositoryId, boolean mountPoint, boolean retrieveFromCache) { Object[] finderArgs = new Object[] { repositoryId, mountPoint }; Object result = null; if (retrieveFromCache) { result = finderCache.getResult(FINDER_PATH_FETCH_BY_R_M, finderArgs, this); } if (result instanceof DLFolder) { DLFolder dlFolder = (DLFolder)result; if ((repositoryId != dlFolder.getRepositoryId()) || (mountPoint != dlFolder.getMountPoint())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(4); query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_R_M_REPOSITORYID_2); query.append(_FINDER_COLUMN_R_M_MOUNTPOINT_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(repositoryId); qPos.add(mountPoint); List<DLFolder> list = q.list(); if (list.isEmpty()) { finderCache.putResult(FINDER_PATH_FETCH_BY_R_M, finderArgs, list); } else { if (list.size() > 1) { Collections.sort(list, Collections.reverseOrder()); if (_log.isWarnEnabled()) { _log.warn( "DLFolderPersistenceImpl.fetchByR_M(long, boolean, boolean) with parameters (" + StringUtil.merge(finderArgs) + ") yields a result set with more than 1 result. This violates the logical unique restriction. There is no order guarantee on which result is returned by this finder."); } } DLFolder dlFolder = list.get(0); result = dlFolder; cacheResult(dlFolder); if ((dlFolder.getRepositoryId() != repositoryId) || (dlFolder.getMountPoint() != mountPoint)) { finderCache.putResult(FINDER_PATH_FETCH_BY_R_M, finderArgs, dlFolder); } } } catch (Exception e) { finderCache.removeResult(FINDER_PATH_FETCH_BY_R_M, finderArgs); throw processException(e); } finally { closeSession(session); } } if (result instanceof List<?>) { return null; } else { return (DLFolder)result; } } /** * Removes the document library folder where repositoryId = ? and mountPoint = ? from the database. * * @param repositoryId the repository ID * @param mountPoint the mount point * @return the document library folder that was removed */ @Override public DLFolder removeByR_M(long repositoryId, boolean mountPoint) throws NoSuchFolderException { DLFolder dlFolder = findByR_M(repositoryId, mountPoint); return remove(dlFolder); } /** * Returns the number of document library folders where repositoryId = ? and mountPoint = ?. * * @param repositoryId the repository ID * @param mountPoint the mount point * @return the number of matching document library folders */ @Override public int countByR_M(long repositoryId, boolean mountPoint) { FinderPath finderPath = FINDER_PATH_COUNT_BY_R_M; Object[] finderArgs = new Object[] { repositoryId, mountPoint }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_R_M_REPOSITORYID_2); query.append(_FINDER_COLUMN_R_M_MOUNTPOINT_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(repositoryId); qPos.add(mountPoint); 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_R_M_REPOSITORYID_2 = "dlFolder.repositoryId = ? AND "; private static final String _FINDER_COLUMN_R_M_MOUNTPOINT_2 = "dlFolder.mountPoint = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_R_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByR_P", new String[] { Long.class.getName(), Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_R_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByR_P", new String[] { Long.class.getName(), Long.class.getName() }, DLFolderModelImpl.REPOSITORYID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_R_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByR_P", new String[] { Long.class.getName(), Long.class.getName() }); /** * Returns all the document library folders where repositoryId = ? and parentFolderId = ?. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @return the matching document library folders */ @Override public List<DLFolder> findByR_P(long repositoryId, long parentFolderId) { return findByR_P(repositoryId, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where repositoryId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 repositoryId the repository ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByR_P(long repositoryId, long parentFolderId, int start, int end) { return findByR_P(repositoryId, parentFolderId, start, end, null); } /** * Returns an ordered range of all the document library folders where repositoryId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 repositoryId the repository ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByR_P(long repositoryId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByR_P(repositoryId, parentFolderId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where repositoryId = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 repositoryId the repository ID * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByR_P(long repositoryId, long parentFolderId, int start, int end, OrderByComparator<DLFolder> 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_R_P; finderArgs = new Object[] { repositoryId, parentFolderId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_R_P; finderArgs = new Object[] { repositoryId, parentFolderId, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((repositoryId != dlFolder.getRepositoryId()) || (parentFolderId != dlFolder.getParentFolderId())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_R_P_REPOSITORYID_2); query.append(_FINDER_COLUMN_R_P_PARENTFOLDERID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(repositoryId); qPos.add(parentFolderId); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where repositoryId = ? and parentFolderId = ?. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByR_P_First(repositoryId, parentFolderId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("repositoryId="); msg.append(repositoryId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where repositoryId = ? and parentFolderId = ?. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByR_P_First(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByR_P(repositoryId, parentFolderId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByR_P_Last(repositoryId, parentFolderId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("repositoryId="); msg.append(repositoryId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where repositoryId = ? and parentFolderId = ?. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByR_P_Last(long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) { int count = countByR_P(repositoryId, parentFolderId); if (count == 0) { return null; } List<DLFolder> list = findByR_P(repositoryId, parentFolderId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where repositoryId = ? and parentFolderId = ?. * * @param folderId the primary key of the current document library folder * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByR_P_PrevAndNext(long folderId, long repositoryId, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByR_P_PrevAndNext(session, dlFolder, repositoryId, parentFolderId, orderByComparator, true); array[1] = dlFolder; array[2] = getByR_P_PrevAndNext(session, dlFolder, repositoryId, parentFolderId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByR_P_PrevAndNext(Session session, DLFolder dlFolder, long repositoryId, long parentFolderId, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_R_P_REPOSITORYID_2); query.append(_FINDER_COLUMN_R_P_PARENTFOLDERID_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(DLFolderModelImpl.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(repositoryId); qPos.add(parentFolderId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where repositoryId = ? and parentFolderId = ? from the database. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID */ @Override public void removeByR_P(long repositoryId, long parentFolderId) { for (DLFolder dlFolder : findByR_P(repositoryId, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where repositoryId = ? and parentFolderId = ?. * * @param repositoryId the repository ID * @param parentFolderId the parent folder ID * @return the number of matching document library folders */ @Override public int countByR_P(long repositoryId, long parentFolderId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_R_P; Object[] finderArgs = new Object[] { repositoryId, parentFolderId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_R_P_REPOSITORYID_2); query.append(_FINDER_COLUMN_R_P_PARENTFOLDERID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(repositoryId); qPos.add(parentFolderId); 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_R_P_REPOSITORYID_2 = "dlFolder.repositoryId = ? AND "; private static final String _FINDER_COLUMN_R_P_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_P_N = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByP_N", new String[] { Long.class.getName(), String.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_P_N = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByP_N", new String[] { Long.class.getName(), String.class.getName() }, DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_P_N = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByP_N", new String[] { Long.class.getName(), String.class.getName() }); /** * Returns all the document library folders where parentFolderId = ? and name = ?. * * @param parentFolderId the parent folder ID * @param name the name * @return the matching document library folders */ @Override public List<DLFolder> findByP_N(long parentFolderId, String name) { return findByP_N(parentFolderId, name, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where parentFolderId = ? and name = ?. * * <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 DLFolderModelImpl}. 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 parentFolderId the parent folder ID * @param name the name * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByP_N(long parentFolderId, String name, int start, int end) { return findByP_N(parentFolderId, name, start, end, null); } /** * Returns an ordered range of all the document library folders where parentFolderId = ? and name = ?. * * <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 DLFolderModelImpl}. 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 parentFolderId the parent folder ID * @param name the name * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByP_N(long parentFolderId, String name, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByP_N(parentFolderId, name, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where parentFolderId = ? and name = ?. * * <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 DLFolderModelImpl}. 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 parentFolderId the parent folder ID * @param name the name * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByP_N(long parentFolderId, String name, int start, int end, OrderByComparator<DLFolder> 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_P_N; finderArgs = new Object[] { parentFolderId, name }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_P_N; finderArgs = new Object[] { parentFolderId, name, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((parentFolderId != dlFolder.getParentFolderId()) || !Objects.equals(name, dlFolder.getName())) { 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_P_N_PARENTFOLDERID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_P_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_P_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_P_N_NAME_2); } if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(parentFolderId); if (bindName) { qPos.add(name); } if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where parentFolderId = ? and name = ?. * * @param parentFolderId the parent folder ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByP_N_First(parentFolderId, name, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("parentFolderId="); msg.append(parentFolderId); msg.append(", name="); msg.append(name); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where parentFolderId = ? and name = ?. * * @param parentFolderId the parent folder ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByP_N_First(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByP_N(parentFolderId, name, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?. * * @param parentFolderId the parent folder ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByP_N_Last(parentFolderId, name, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("parentFolderId="); msg.append(parentFolderId); msg.append(", name="); msg.append(name); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where parentFolderId = ? and name = ?. * * @param parentFolderId the parent folder ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByP_N_Last(long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) { int count = countByP_N(parentFolderId, name); if (count == 0) { return null; } List<DLFolder> list = findByP_N(parentFolderId, name, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where parentFolderId = ? and name = ?. * * @param folderId the primary key of the current document library folder * @param parentFolderId the parent folder ID * @param name the name * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByP_N_PrevAndNext(long folderId, long parentFolderId, String name, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByP_N_PrevAndNext(session, dlFolder, parentFolderId, name, orderByComparator, true); array[1] = dlFolder; array[2] = getByP_N_PrevAndNext(session, dlFolder, parentFolderId, name, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByP_N_PrevAndNext(Session session, DLFolder dlFolder, long parentFolderId, String name, OrderByComparator<DLFolder> 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_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_P_N_PARENTFOLDERID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_P_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_P_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_P_N_NAME_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(DLFolderModelImpl.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(parentFolderId); if (bindName) { qPos.add(name); } if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where parentFolderId = ? and name = ? from the database. * * @param parentFolderId the parent folder ID * @param name the name */ @Override public void removeByP_N(long parentFolderId, String name) { for (DLFolder dlFolder : findByP_N(parentFolderId, name, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where parentFolderId = ? and name = ?. * * @param parentFolderId the parent folder ID * @param name the name * @return the number of matching document library folders */ @Override public int countByP_N(long parentFolderId, String name) { FinderPath finderPath = FINDER_PATH_COUNT_BY_P_N; Object[] finderArgs = new Object[] { parentFolderId, name }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_P_N_PARENTFOLDERID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_P_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_P_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_P_N_NAME_2); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(parentFolderId); if (bindName) { qPos.add(name); } 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_P_N_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ? AND "; private static final String _FINDER_COLUMN_P_N_NAME_1 = "dlFolder.name IS NULL"; private static final String _FINDER_COLUMN_P_N_NAME_2 = "dlFolder.name = ?"; private static final String _FINDER_COLUMN_P_N_NAME_3 = "(dlFolder.name IS NULL OR dlFolder.name = '')"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByG_M_P", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByG_M_P", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.MOUNTPOINT_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_M_P = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_M_P", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName() }); /** * Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @return the matching document library folders */ @Override public List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId) { return findByG_M_P(groupId, mountPoint, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end) { return findByG_M_P(groupId, mountPoint, parentFolderId, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByG_M_P(groupId, mountPoint, parentFolderId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> 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_G_M_P; finderArgs = new Object[] { groupId, mountPoint, parentFolderId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_P; finderArgs = new Object[] { groupId, mountPoint, parentFolderId, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId()) || (mountPoint != dlFolder.getMountPoint()) || (parentFolderId != dlFolder.getParentFolderId())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(5 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(5); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_PARENTFOLDERID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_P_First(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_P_First(groupId, mountPoint, parentFolderId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(8); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_P_First(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByG_M_P(groupId, mountPoint, parentFolderId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_P_Last(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_P_Last(groupId, mountPoint, parentFolderId, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(8); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_P_Last(long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) { int count = countByG_M_P(groupId, mountPoint, parentFolderId); if (count == 0) { return null; } List<DLFolder> list = findByG_M_P(groupId, mountPoint, parentFolderId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByG_M_P_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByG_M_P_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, orderByComparator, true); array[1] = dlFolder; array[2] = getByG_M_P_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByG_M_P_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(5); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_PARENTFOLDERID_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(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId) { return filterFindByG_M_P(groupId, mountPoint, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end) { return filterFindByG_M_P(groupId, mountPoint, parentFolderId, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P(long groupId, boolean mountPoint, long parentFolderId, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_P(groupId, mountPoint, parentFolderId, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(5 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(6); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_P_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_PARENTFOLDERID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByG_M_P_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_P_PrevAndNext(folderId, groupId, mountPoint, parentFolderId, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByG_M_P_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByG_M_P_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByG_M_P_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, long parentFolderId, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(7 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(6); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_P_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_PARENTFOLDERID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? from the database. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID */ @Override public void removeByG_M_P(long groupId, boolean mountPoint, long parentFolderId) { for (DLFolder dlFolder : findByG_M_P(groupId, mountPoint, parentFolderId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @return the number of matching document library folders */ @Override public int countByG_M_P(long groupId, boolean mountPoint, long parentFolderId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_M_P; Object[] finderArgs = new Object[] { groupId, mountPoint, parentFolderId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(4); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_PARENTFOLDERID_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(mountPoint); qPos.add(parentFolderId); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByG_M_P(long groupId, boolean mountPoint, long parentFolderId) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByG_M_P(groupId, mountPoint, parentFolderId); } StringBundler query = new StringBundler(4); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_PARENTFOLDERID_2); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_G_M_P_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_M_P_MOUNTPOINT_2 = "dlFolder.mountPoint = ? AND "; private static final String _FINDER_COLUMN_G_M_P_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ?"; public static final FinderPath FINDER_PATH_FETCH_BY_G_P_N = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByG_P_N", new String[] { Long.class.getName(), Long.class.getName(), String.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_P_N = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_P_N", new String[] { Long.class.getName(), Long.class.getName(), String.class.getName() }); /** * Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or throws a {@link NoSuchFolderException} if it could not be found. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param name the name * @return the matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_P_N(long groupId, long parentFolderId, String name) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_P_N(groupId, parentFolderId, name); if (dlFolder == null) { StringBundler msg = new StringBundler(8); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", name="); msg.append(name); msg.append(StringPool.CLOSE_CURLY_BRACE); if (_log.isDebugEnabled()) { _log.debug(msg.toString()); } throw new NoSuchFolderException(msg.toString()); } return dlFolder; } /** * Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or returns <code>null</code> if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param name the name * @return the matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_P_N(long groupId, long parentFolderId, String name) { return fetchByG_P_N(groupId, parentFolderId, name, true); } /** * Returns the document library folder where groupId = ? and parentFolderId = ? and name = ? or returns <code>null</code> if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param name the name * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_P_N(long groupId, long parentFolderId, String name, boolean retrieveFromCache) { Object[] finderArgs = new Object[] { groupId, parentFolderId, name }; Object result = null; if (retrieveFromCache) { result = finderCache.getResult(FINDER_PATH_FETCH_BY_G_P_N, finderArgs, this); } if (result instanceof DLFolder) { DLFolder dlFolder = (DLFolder)result; if ((groupId != dlFolder.getGroupId()) || (parentFolderId != dlFolder.getParentFolderId()) || !Objects.equals(name, dlFolder.getName())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(5); query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_N_GROUPID_2); query.append(_FINDER_COLUMN_G_P_N_PARENTFOLDERID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_G_P_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_P_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_G_P_N_NAME_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(parentFolderId); if (bindName) { qPos.add(name); } List<DLFolder> list = q.list(); if (list.isEmpty()) { finderCache.putResult(FINDER_PATH_FETCH_BY_G_P_N, finderArgs, list); } else { DLFolder dlFolder = list.get(0); result = dlFolder; cacheResult(dlFolder); if ((dlFolder.getGroupId() != groupId) || (dlFolder.getParentFolderId() != parentFolderId) || (dlFolder.getName() == null) || !dlFolder.getName().equals(name)) { finderCache.putResult(FINDER_PATH_FETCH_BY_G_P_N, finderArgs, dlFolder); } } } catch (Exception e) { finderCache.removeResult(FINDER_PATH_FETCH_BY_G_P_N, finderArgs); throw processException(e); } finally { closeSession(session); } } if (result instanceof List<?>) { return null; } else { return (DLFolder)result; } } /** * Removes the document library folder where groupId = ? and parentFolderId = ? and name = ? from the database. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param name the name * @return the document library folder that was removed */ @Override public DLFolder removeByG_P_N(long groupId, long parentFolderId, String name) throws NoSuchFolderException { DLFolder dlFolder = findByG_P_N(groupId, parentFolderId, name); return remove(dlFolder); } /** * Returns the number of document library folders where groupId = ? and parentFolderId = ? and name = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param name the name * @return the number of matching document library folders */ @Override public int countByG_P_N(long groupId, long parentFolderId, String name) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_P_N; Object[] finderArgs = new Object[] { groupId, parentFolderId, name }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(4); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_N_GROUPID_2); query.append(_FINDER_COLUMN_G_P_N_PARENTFOLDERID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_G_P_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_P_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_G_P_N_NAME_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(parentFolderId); if (bindName) { qPos.add(name); } 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_P_N_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_P_N_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ? AND "; private static final String _FINDER_COLUMN_G_P_N_NAME_1 = "dlFolder.name IS NULL"; private static final String _FINDER_COLUMN_G_P_N_NAME_2 = "dlFolder.name = ?"; private static final String _FINDER_COLUMN_G_P_N_NAME_3 = "(dlFolder.name IS NULL OR dlFolder.name = '')"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_F_C_P_NOTS = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByF_C_P_NotS", new String[] { Long.class.getName(), Long.class.getName(), Long.class.getName(), Integer.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_COUNT_BY_F_C_P_NOTS = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "countByF_C_P_NotS", new String[] { Long.class.getName(), Long.class.getName(), Long.class.getName(), Integer.class.getName() }); /** * Returns all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @return the matching document library folders */ @Override public List<DLFolder> findByF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status) { return findByF_C_P_NotS(folderId, companyId, parentFolderId, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * <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 DLFolderModelImpl}. 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 folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end) { return findByF_C_P_NotS(folderId, companyId, parentFolderId, status, start, end, null); } /** * Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * <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 DLFolderModelImpl}. 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 folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByF_C_P_NotS(folderId, companyId, parentFolderId, status, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * <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 DLFolderModelImpl}. 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 folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_F_C_P_NOTS; finderArgs = new Object[] { folderId, companyId, parentFolderId, status, start, end, orderByComparator }; List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((folderId >= dlFolder.getFolderId()) || (companyId != dlFolder.getCompanyId()) || (parentFolderId != dlFolder.getParentFolderId()) || (status == dlFolder.getStatus())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_F_C_P_NOTS_FOLDERID_2); query.append(_FINDER_COLUMN_F_C_P_NOTS_COMPANYID_2); query.append(_FINDER_COLUMN_F_C_P_NOTS_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_F_C_P_NOTS_STATUS_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(folderId); qPos.add(companyId); qPos.add(parentFolderId); qPos.add(status); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByF_C_P_NotS_First(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByF_C_P_NotS_First(folderId, companyId, parentFolderId, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("folderId="); msg.append(folderId); msg.append(", companyId="); msg.append(companyId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByF_C_P_NotS_First(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByF_C_P_NotS(folderId, companyId, parentFolderId, status, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByF_C_P_NotS_Last(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByF_C_P_NotS_Last(folderId, companyId, parentFolderId, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("folderId="); msg.append(folderId); msg.append(", companyId="); msg.append(companyId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByF_C_P_NotS_Last(long folderId, long companyId, long parentFolderId, int status, OrderByComparator<DLFolder> orderByComparator) { int count = countByF_C_P_NotS(folderId, companyId, parentFolderId, status); if (count == 0) { return null; } List<DLFolder> list = findByF_C_P_NotS(folderId, companyId, parentFolderId, status, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Removes all the document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ? from the database. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status */ @Override public void removeByF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status) { for (DLFolder dlFolder : findByF_C_P_NotS(folderId, companyId, parentFolderId, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where folderId > ? and companyId = ? and parentFolderId = ? and status ≠ ?. * * @param folderId the folder ID * @param companyId the company ID * @param parentFolderId the parent folder ID * @param status the status * @return the number of matching document library folders */ @Override public int countByF_C_P_NotS(long folderId, long companyId, long parentFolderId, int status) { FinderPath finderPath = FINDER_PATH_WITH_PAGINATION_COUNT_BY_F_C_P_NOTS; Object[] finderArgs = new Object[] { folderId, companyId, parentFolderId, status }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(5); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_F_C_P_NOTS_FOLDERID_2); query.append(_FINDER_COLUMN_F_C_P_NOTS_COMPANYID_2); query.append(_FINDER_COLUMN_F_C_P_NOTS_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_F_C_P_NOTS_STATUS_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(folderId); qPos.add(companyId); qPos.add(parentFolderId); qPos.add(status); 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_F_C_P_NOTS_FOLDERID_2 = "dlFolder.folderId > ? AND "; private static final String _FINDER_COLUMN_F_C_P_NOTS_COMPANYID_2 = "dlFolder.companyId = ? AND "; private static final String _FINDER_COLUMN_F_C_P_NOTS_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ? AND "; private static final String _FINDER_COLUMN_F_C_P_NOTS_STATUS_2 = "dlFolder.status != ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_P_H = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByG_M_P_H", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByG_M_P_H", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Boolean.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.MOUNTPOINT_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.HIDDEN_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_M_P_H = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_M_P_H", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Boolean.class.getName() }); /** * Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @return the matching document library folders */ @Override public List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden) { return findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end) { return findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> 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_G_M_P_H; finderArgs = new Object[] { groupId, mountPoint, parentFolderId, hidden }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_P_H; finderArgs = new Object[] { groupId, mountPoint, parentFolderId, hidden, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId()) || (mountPoint != dlFolder.getMountPoint()) || (parentFolderId != dlFolder.getParentFolderId()) || (hidden != dlFolder.getHidden())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_HIDDEN_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_P_H_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_P_H_First(groupId, mountPoint, parentFolderId, hidden, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", hidden="); msg.append(hidden); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_P_H_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_P_H_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_P_H_Last(groupId, mountPoint, parentFolderId, hidden, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", hidden="); msg.append(hidden); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_P_H_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) { int count = countByG_M_P_H(groupId, mountPoint, parentFolderId, hidden); if (count == 0) { return null; } List<DLFolder> list = findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByG_M_P_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByG_M_P_H_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, orderByComparator, true); array[1] = dlFolder; array[2] = getByG_M_P_H_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByG_M_P_H_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(7 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_HIDDEN_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(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden) { return filterFindByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end) { return filterFindByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(7); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_P_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_HIDDEN_2_SQL); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByG_M_P_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_P_H_PrevAndNext(folderId, groupId, mountPoint, parentFolderId, hidden, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByG_M_P_H_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByG_M_P_H_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByG_M_P_H_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(8 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(7); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_P_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_HIDDEN_2_SQL); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? from the database. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden */ @Override public void removeByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden) { for (DLFolder dlFolder : findByG_M_P_H(groupId, mountPoint, parentFolderId, hidden, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @return the number of matching document library folders */ @Override public int countByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_M_P_H; Object[] finderArgs = new Object[] { groupId, mountPoint, parentFolderId, hidden }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(5); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_HIDDEN_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(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByG_M_P_H(long groupId, boolean mountPoint, long parentFolderId, boolean hidden) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByG_M_P_H(groupId, mountPoint, parentFolderId, hidden); } StringBundler query = new StringBundler(5); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_HIDDEN_2_SQL); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_G_M_P_H_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_MOUNTPOINT_2 = "dlFolder.mountPoint = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_HIDDEN_2 = "dlFolder.hidden = ?"; private static final String _FINDER_COLUMN_G_M_P_H_HIDDEN_2_SQL = "dlFolder.hidden_ = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_T_H = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByG_M_T_H", new String[] { Long.class.getName(), Boolean.class.getName(), String.class.getName(), Boolean.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_COUNT_BY_G_M_T_H = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "countByG_M_T_H", new String[] { Long.class.getName(), Boolean.class.getName(), String.class.getName(), Boolean.class.getName() }); /** * Returns all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @return the matching document library folders */ @Override public List<DLFolder> findByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden) { return findByG_M_T_H(groupId, mountPoint, treePath, hidden, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end) { return findByG_M_T_H(groupId, mountPoint, treePath, hidden, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByG_M_T_H(groupId, mountPoint, treePath, hidden, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_T_H; finderArgs = new Object[] { groupId, mountPoint, treePath, hidden, start, end, orderByComparator }; List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId()) || (mountPoint != dlFolder.getMountPoint()) || !StringUtil.wildcardMatches( dlFolder.getTreePath(), treePath, CharPool.UNDERLINE, CharPool.PERCENT, CharPool.BACK_SLASH, true) || (hidden != dlFolder.getHidden())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_T_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2); boolean bindTreePath = false; if (treePath == null) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_1); } else if (treePath.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_3); } else { bindTreePath = true; query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_2); } query.append(_FINDER_COLUMN_G_M_T_H_HIDDEN_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); if (bindTreePath) { qPos.add(treePath); } qPos.add(hidden); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_T_H_First(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_T_H_First(groupId, mountPoint, treePath, hidden, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", treePath="); msg.append(treePath); msg.append(", hidden="); msg.append(hidden); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_T_H_First(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByG_M_T_H(groupId, mountPoint, treePath, hidden, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_T_H_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_T_H_Last(groupId, mountPoint, treePath, hidden, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", treePath="); msg.append(treePath); msg.append(", hidden="); msg.append(hidden); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_T_H_Last(long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) { int count = countByG_M_T_H(groupId, mountPoint, treePath, hidden); if (count == 0) { return null; } List<DLFolder> list = findByG_M_T_H(groupId, mountPoint, treePath, hidden, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByG_M_T_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByG_M_T_H_PrevAndNext(session, dlFolder, groupId, mountPoint, treePath, hidden, orderByComparator, true); array[1] = dlFolder; array[2] = getByG_M_T_H_PrevAndNext(session, dlFolder, groupId, mountPoint, treePath, hidden, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByG_M_T_H_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(7 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_T_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2); boolean bindTreePath = false; if (treePath == null) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_1); } else if (treePath.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_3); } else { bindTreePath = true; query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_2); } query.append(_FINDER_COLUMN_G_M_T_H_HIDDEN_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(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); if (bindTreePath) { qPos.add(treePath); } qPos.add(hidden); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden) { return filterFindByG_M_T_H(groupId, mountPoint, treePath, hidden, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end) { return filterFindByG_M_T_H(groupId, mountPoint, treePath, hidden, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_T_H(groupId, mountPoint, treePath, hidden, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(7); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_T_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2); boolean bindTreePath = false; if (treePath == null) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_1); } else if (treePath.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_3); } else { bindTreePath = true; query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_2); } query.append(_FINDER_COLUMN_G_M_T_H_HIDDEN_2_SQL); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); if (bindTreePath) { qPos.add(treePath); } qPos.add(hidden); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByG_M_T_H_PrevAndNext(long folderId, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_T_H_PrevAndNext(folderId, groupId, mountPoint, treePath, hidden, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByG_M_T_H_PrevAndNext(session, dlFolder, groupId, mountPoint, treePath, hidden, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByG_M_T_H_PrevAndNext(session, dlFolder, groupId, mountPoint, treePath, hidden, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByG_M_T_H_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, String treePath, boolean hidden, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(8 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(7); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_T_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2); boolean bindTreePath = false; if (treePath == null) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_1); } else if (treePath.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_3); } else { bindTreePath = true; query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_2); } query.append(_FINDER_COLUMN_G_M_T_H_HIDDEN_2_SQL); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); if (bindTreePath) { qPos.add(treePath); } qPos.add(hidden); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ? from the database. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden */ @Override public void removeByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden) { for (DLFolder dlFolder : findByG_M_T_H(groupId, mountPoint, treePath, hidden, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @return the number of matching document library folders */ @Override public int countByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden) { FinderPath finderPath = FINDER_PATH_WITH_PAGINATION_COUNT_BY_G_M_T_H; Object[] finderArgs = new Object[] { groupId, mountPoint, treePath, hidden }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(5); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_T_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2); boolean bindTreePath = false; if (treePath == null) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_1); } else if (treePath.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_3); } else { bindTreePath = true; query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_2); } query.append(_FINDER_COLUMN_G_M_T_H_HIDDEN_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(mountPoint); if (bindTreePath) { qPos.add(treePath); } qPos.add(hidden); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and treePath LIKE ? and hidden = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param treePath the tree path * @param hidden the hidden * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByG_M_T_H(long groupId, boolean mountPoint, String treePath, boolean hidden) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByG_M_T_H(groupId, mountPoint, treePath, hidden); } StringBundler query = new StringBundler(5); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_T_H_GROUPID_2); query.append(_FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2); boolean bindTreePath = false; if (treePath == null) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_1); } else if (treePath.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_3); } else { bindTreePath = true; query.append(_FINDER_COLUMN_G_M_T_H_TREEPATH_2); } query.append(_FINDER_COLUMN_G_M_T_H_HIDDEN_2_SQL); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); if (bindTreePath) { qPos.add(treePath); } qPos.add(hidden); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_G_M_T_H_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_M_T_H_MOUNTPOINT_2 = "dlFolder.mountPoint = ? AND "; private static final String _FINDER_COLUMN_G_M_T_H_TREEPATH_1 = "dlFolder.treePath IS NULL AND "; private static final String _FINDER_COLUMN_G_M_T_H_TREEPATH_2 = "dlFolder.treePath LIKE ? AND "; private static final String _FINDER_COLUMN_G_M_T_H_TREEPATH_3 = "(dlFolder.treePath IS NULL OR dlFolder.treePath LIKE '') AND "; private static final String _FINDER_COLUMN_G_M_T_H_HIDDEN_2 = "dlFolder.hidden = ?"; private static final String _FINDER_COLUMN_G_M_T_H_HIDDEN_2_SQL = "dlFolder.hidden_ = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_G_P_H_S = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByG_P_H_S", new String[] { Long.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P_H_S = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByG_P_H_S", new String[] { Long.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.HIDDEN_COLUMN_BITMASK | DLFolderModelImpl.STATUS_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_P_H_S = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_P_H_S", new String[] { Long.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName() }); /** * Returns all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the matching document library folders */ @Override public List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status) { return findByG_P_H_S(groupId, parentFolderId, hidden, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end) { return findByG_P_H_S(groupId, parentFolderId, hidden, status, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByG_P_H_S(groupId, parentFolderId, hidden, status, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> 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_G_P_H_S; finderArgs = new Object[] { groupId, parentFolderId, hidden, status }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_P_H_S; finderArgs = new Object[] { groupId, parentFolderId, hidden, status, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId()) || (parentFolderId != dlFolder.getParentFolderId()) || (hidden != dlFolder.getHidden()) || (status != dlFolder.getStatus())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_P_H_S_HIDDEN_2); query.append(_FINDER_COLUMN_G_P_H_S_STATUS_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_P_H_S_First(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_P_H_S_First(groupId, parentFolderId, hidden, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", hidden="); msg.append(hidden); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_P_H_S_First(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByG_P_H_S(groupId, parentFolderId, hidden, status, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_P_H_S_Last(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_P_H_S_Last(groupId, parentFolderId, hidden, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(10); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", hidden="); msg.append(hidden); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_P_H_S_Last(long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) { int count = countByG_P_H_S(groupId, parentFolderId, hidden, status); if (count == 0) { return null; } List<DLFolder> list = findByG_P_H_S(groupId, parentFolderId, hidden, status, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByG_P_H_S_PrevAndNext(long folderId, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByG_P_H_S_PrevAndNext(session, dlFolder, groupId, parentFolderId, hidden, status, orderByComparator, true); array[1] = dlFolder; array[2] = getByG_P_H_S_PrevAndNext(session, dlFolder, groupId, parentFolderId, hidden, status, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByG_P_H_S_PrevAndNext(Session session, DLFolder dlFolder, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(7 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(6); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_P_H_S_HIDDEN_2); query.append(_FINDER_COLUMN_G_P_H_S_STATUS_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(DLFolderModelImpl.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(groupId); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status) { return filterFindByG_P_H_S(groupId, parentFolderId, hidden, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end) { return filterFindByG_P_H_S(groupId, parentFolderId, hidden, status, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_P_H_S(groupId, parentFolderId, hidden, status, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(7); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_P_H_S_HIDDEN_2_SQL); query.append(_FINDER_COLUMN_G_P_H_S_STATUS_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByG_P_H_S_PrevAndNext(long folderId, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_P_H_S_PrevAndNext(folderId, groupId, parentFolderId, hidden, status, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByG_P_H_S_PrevAndNext(session, dlFolder, groupId, parentFolderId, hidden, status, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByG_P_H_S_PrevAndNext(session, dlFolder, groupId, parentFolderId, hidden, status, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByG_P_H_S_PrevAndNext(Session session, DLFolder dlFolder, long groupId, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(8 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(7); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_P_H_S_HIDDEN_2_SQL); query.append(_FINDER_COLUMN_G_P_H_S_STATUS_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ? from the database. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status */ @Override public void removeByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status) { for (DLFolder dlFolder : findByG_P_H_S(groupId, parentFolderId, hidden, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the number of matching document library folders */ @Override public int countByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_P_H_S; Object[] finderArgs = new Object[] { groupId, parentFolderId, hidden, status }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(5); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_P_H_S_HIDDEN_2); query.append(_FINDER_COLUMN_G_P_H_S_STATUS_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(parentFolderId); qPos.add(hidden); qPos.add(status); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByG_P_H_S(long groupId, long parentFolderId, boolean hidden, int status) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByG_P_H_S(groupId, parentFolderId, hidden, status); } StringBundler query = new StringBundler(5); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_P_H_S_HIDDEN_2_SQL); query.append(_FINDER_COLUMN_G_P_H_S_STATUS_2); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_G_P_H_S_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_P_H_S_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ? AND "; private static final String _FINDER_COLUMN_G_P_H_S_HIDDEN_2 = "dlFolder.hidden = ? AND "; private static final String _FINDER_COLUMN_G_P_H_S_HIDDEN_2_SQL = "dlFolder.hidden_ = ? AND "; private static final String _FINDER_COLUMN_G_P_H_S_STATUS_2 = "dlFolder.status = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_P_H_S = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByG_M_P_H_S", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H_S = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, DLFolderImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByG_M_P_H_S", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName() }, DLFolderModelImpl.GROUPID_COLUMN_BITMASK | DLFolderModelImpl.MOUNTPOINT_COLUMN_BITMASK | DLFolderModelImpl.PARENTFOLDERID_COLUMN_BITMASK | DLFolderModelImpl.HIDDEN_COLUMN_BITMASK | DLFolderModelImpl.STATUS_COLUMN_BITMASK | DLFolderModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_M_P_H_S = new FinderPath(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_M_P_H_S", new String[] { Long.class.getName(), Boolean.class.getName(), Long.class.getName(), Boolean.class.getName(), Integer.class.getName() }); /** * Returns all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the matching document library folders */ @Override public List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status) { return findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders */ @Override public List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end) { return findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, start, end, null); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders */ @Override public List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> 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_G_M_P_H_S; finderArgs = new Object[] { groupId, mountPoint, parentFolderId, hidden, status }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M_P_H_S; finderArgs = new Object[] { groupId, mountPoint, parentFolderId, hidden, status, start, end, orderByComparator }; } List<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DLFolder dlFolder : list) { if ((groupId != dlFolder.getGroupId()) || (mountPoint != dlFolder.getMountPoint()) || (parentFolderId != dlFolder.getParentFolderId()) || (hidden != dlFolder.getHidden()) || (status != dlFolder.getStatus())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(7 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(7); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_HIDDEN_2); query.append(_FINDER_COLUMN_G_M_P_H_S_STATUS_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_P_H_S_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_P_H_S_First(groupId, mountPoint, parentFolderId, hidden, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(12); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", hidden="); msg.append(hidden); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the first document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_P_H_S_First(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) { List<DLFolder> list = findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder * @throws NoSuchFolderException if a matching document library folder could not be found */ @Override public DLFolder findByG_M_P_H_S_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = fetchByG_M_P_H_S_Last(groupId, mountPoint, parentFolderId, hidden, status, orderByComparator); if (dlFolder != null) { return dlFolder; } StringBundler msg = new StringBundler(12); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", mountPoint="); msg.append(mountPoint); msg.append(", parentFolderId="); msg.append(parentFolderId); msg.append(", hidden="); msg.append(hidden); msg.append(", status="); msg.append(status); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchFolderException(msg.toString()); } /** * Returns the last document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching document library folder, or <code>null</code> if a matching document library folder could not be found */ @Override public DLFolder fetchByG_M_P_H_S_Last(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) { int count = countByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status); if (count == 0) { return null; } List<DLFolder> list = findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the document library folders before and after the current document library folder in the ordered set where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] findByG_M_P_H_S_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = getByG_M_P_H_S_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, status, orderByComparator, true); array[1] = dlFolder; array[2] = getByG_M_P_H_S_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, status, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder getByG_M_P_H_S_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(8 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(7); } query.append(_SQL_SELECT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_HIDDEN_2); query.append(_FINDER_COLUMN_G_M_P_H_S_STATUS_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(DLFolderModelImpl.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(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status) { return filterFindByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end) { return filterFindByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, start, end, null); } /** * Returns an ordered range of all the document library folders that the user has permissions to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * <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 DLFolderModelImpl}. 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 groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching document library folders that the user has permission to view */ @Override public List<DLFolder> filterFindByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, int start, int end, OrderByComparator<DLFolder> orderByComparator) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(7 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(8); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_HIDDEN_2_SQL); query.append(_FINDER_COLUMN_G_M_P_H_S_STATUS_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { if (getDB().isSupportsInlineDistinct()) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator, true); } else { appendOrderByComparator(query, _ORDER_BY_ENTITY_TABLE, orderByComparator, true); } } else { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); return (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the document library folders before and after the current document library folder in the ordered set of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param folderId the primary key of the current document library folder * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder[] filterFindByG_M_P_H_S_PrevAndNext(long folderId, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator) throws NoSuchFolderException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByG_M_P_H_S_PrevAndNext(folderId, groupId, mountPoint, parentFolderId, hidden, status, orderByComparator); } DLFolder dlFolder = findByPrimaryKey(folderId); Session session = null; try { session = openSession(); DLFolder[] array = new DLFolderImpl[3]; array[0] = filterGetByG_M_P_H_S_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, status, orderByComparator, true); array[1] = dlFolder; array[2] = filterGetByG_M_P_H_S_PrevAndNext(session, dlFolder, groupId, mountPoint, parentFolderId, hidden, status, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DLFolder filterGetByG_M_P_H_S_PrevAndNext(Session session, DLFolder dlFolder, long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status, OrderByComparator<DLFolder> orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(9 + (orderByComparator.getOrderByConditionFields().length * 3) + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(8); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_WHERE); } else { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_G_M_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_HIDDEN_2_SQL); query.append(_FINDER_COLUMN_G_M_P_H_S_STATUS_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2); } if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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++) { if (getDB().isSupportsInlineDistinct()) { query.append(_ORDER_BY_ENTITY_ALIAS); } else { query.append(_ORDER_BY_ENTITY_TABLE); } 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 { if (getDB().isSupportsInlineDistinct()) { query.append(DLFolderModelImpl.ORDER_BY_JPQL); } else { query.append(DLFolderModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, DLFolderImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, DLFolderImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(dlFolder); for (Object value : values) { qPos.add(value); } } List<DLFolder> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ? from the database. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status */ @Override public void removeByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status) { for (DLFolder dlFolder : findByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(dlFolder); } } /** * Returns the number of document library folders where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the number of matching document library folders */ @Override public int countByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status) { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_M_P_H_S; Object[] finderArgs = new Object[] { groupId, mountPoint, parentFolderId, hidden, status }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(6); query.append(_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_HIDDEN_2); query.append(_FINDER_COLUMN_G_M_P_H_S_STATUS_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(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); 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(); } /** * Returns the number of document library folders that the user has permission to view where groupId = ? and mountPoint = ? and parentFolderId = ? and hidden = ? and status = ?. * * @param groupId the group ID * @param mountPoint the mount point * @param parentFolderId the parent folder ID * @param hidden the hidden * @param status the status * @return the number of matching document library folders that the user has permission to view */ @Override public int filterCountByG_M_P_H_S(long groupId, boolean mountPoint, long parentFolderId, boolean hidden, int status) { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByG_M_P_H_S(groupId, mountPoint, parentFolderId, hidden, status); } StringBundler query = new StringBundler(6); query.append(_FILTER_SQL_COUNT_DLFOLDER_WHERE); query.append(_FINDER_COLUMN_G_M_P_H_S_GROUPID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2); query.append(_FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2); query.append(_FINDER_COLUMN_G_M_P_H_S_HIDDEN_2_SQL); query.append(_FINDER_COLUMN_G_M_P_H_S_STATUS_2); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), DLFolder.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSynchronizedSQLQuery(sql); q.addScalar(COUNT_COLUMN_NAME, com.liferay.portal.kernel.dao.orm.Type.LONG); QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); qPos.add(mountPoint); qPos.add(parentFolderId); qPos.add(hidden); qPos.add(status); Long count = (Long)q.uniqueResult(); return count.intValue(); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } private static final String _FINDER_COLUMN_G_M_P_H_S_GROUPID_2 = "dlFolder.groupId = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_S_MOUNTPOINT_2 = "dlFolder.mountPoint = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_S_PARENTFOLDERID_2 = "dlFolder.parentFolderId = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_S_HIDDEN_2 = "dlFolder.hidden = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_S_HIDDEN_2_SQL = "dlFolder.hidden_ = ? AND "; private static final String _FINDER_COLUMN_G_M_P_H_S_STATUS_2 = "dlFolder.status = ?"; public DLFolderPersistenceImpl() { setModelClass(DLFolder.class); try { Field field = ReflectionUtil.getDeclaredField(BasePersistenceImpl.class, "_dbColumnNames"); Map<String, String> dbColumnNames = new HashMap<String, String>(); dbColumnNames.put("uuid", "uuid_"); dbColumnNames.put("hidden", "hidden_"); field.set(this, dbColumnNames); } catch (Exception e) { if (_log.isDebugEnabled()) { _log.debug(e, e); } } } /** * Caches the document library folder in the entity cache if it is enabled. * * @param dlFolder the document library folder */ @Override public void cacheResult(DLFolder dlFolder) { entityCache.putResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, dlFolder.getPrimaryKey(), dlFolder); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, new Object[] { dlFolder.getUuid(), dlFolder.getGroupId() }, dlFolder); finderCache.putResult(FINDER_PATH_FETCH_BY_R_M, new Object[] { dlFolder.getRepositoryId(), dlFolder.getMountPoint() }, dlFolder); finderCache.putResult(FINDER_PATH_FETCH_BY_G_P_N, new Object[] { dlFolder.getGroupId(), dlFolder.getParentFolderId(), dlFolder.getName() }, dlFolder); dlFolder.resetOriginalValues(); } /** * Caches the document library folders in the entity cache if it is enabled. * * @param dlFolders the document library folders */ @Override public void cacheResult(List<DLFolder> dlFolders) { for (DLFolder dlFolder : dlFolders) { if (entityCache.getResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, dlFolder.getPrimaryKey()) == null) { cacheResult(dlFolder); } else { dlFolder.resetOriginalValues(); } } } /** * Clears the cache for all document library folders. * * <p> * The {@link EntityCache} and {@link FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache() { entityCache.clearCache(DLFolderImpl.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 document library folder. * * <p> * The {@link EntityCache} and {@link FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache(DLFolder dlFolder) { entityCache.removeResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, dlFolder.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); clearUniqueFindersCache((DLFolderModelImpl)dlFolder, true); } @Override public void clearCache(List<DLFolder> dlFolders) { finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); for (DLFolder dlFolder : dlFolders) { entityCache.removeResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, dlFolder.getPrimaryKey()); clearUniqueFindersCache((DLFolderModelImpl)dlFolder, true); } } protected void cacheUniqueFindersCache(DLFolderModelImpl dlFolderModelImpl) { Object[] args = new Object[] { dlFolderModelImpl.getUuid(), dlFolderModelImpl.getGroupId() }; finderCache.putResult(FINDER_PATH_COUNT_BY_UUID_G, args, Long.valueOf(1), false); finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G, args, dlFolderModelImpl, false); args = new Object[] { dlFolderModelImpl.getRepositoryId(), dlFolderModelImpl.getMountPoint() }; finderCache.putResult(FINDER_PATH_COUNT_BY_R_M, args, Long.valueOf(1), false); finderCache.putResult(FINDER_PATH_FETCH_BY_R_M, args, dlFolderModelImpl, false); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getName() }; finderCache.putResult(FINDER_PATH_COUNT_BY_G_P_N, args, Long.valueOf(1), false); finderCache.putResult(FINDER_PATH_FETCH_BY_G_P_N, args, dlFolderModelImpl, false); } protected void clearUniqueFindersCache( DLFolderModelImpl dlFolderModelImpl, boolean clearCurrent) { if (clearCurrent) { Object[] args = new Object[] { dlFolderModelImpl.getUuid(), dlFolderModelImpl.getGroupId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_G, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_UUID_G, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_UUID_G.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalUuid(), dlFolderModelImpl.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[] { dlFolderModelImpl.getRepositoryId(), dlFolderModelImpl.getMountPoint() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_R_M, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_R_M, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_R_M.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalRepositoryId(), dlFolderModelImpl.getOriginalMountPoint() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_R_M, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_R_M, args); } if (clearCurrent) { Object[] args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getName() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P_N, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_G_P_N, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_G_P_N.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId(), dlFolderModelImpl.getOriginalParentFolderId(), dlFolderModelImpl.getOriginalName() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P_N, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_G_P_N, args); } } /** * Creates a new document library folder with the primary key. Does not add the document library folder to the database. * * @param folderId the primary key for the new document library folder * @return the new document library folder */ @Override public DLFolder create(long folderId) { DLFolder dlFolder = new DLFolderImpl(); dlFolder.setNew(true); dlFolder.setPrimaryKey(folderId); String uuid = PortalUUIDUtil.generate(); dlFolder.setUuid(uuid); dlFolder.setCompanyId(companyProvider.getCompanyId()); return dlFolder; } /** * Removes the document library folder with the primary key from the database. Also notifies the appropriate model listeners. * * @param folderId the primary key of the document library folder * @return the document library folder that was removed * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder remove(long folderId) throws NoSuchFolderException { return remove((Serializable)folderId); } /** * Removes the document library folder with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the document library folder * @return the document library folder that was removed * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder remove(Serializable primaryKey) throws NoSuchFolderException { Session session = null; try { session = openSession(); DLFolder dlFolder = (DLFolder)session.get(DLFolderImpl.class, primaryKey); if (dlFolder == null) { if (_log.isDebugEnabled()) { _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchFolderException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(dlFolder); } catch (NoSuchFolderException nsee) { throw nsee; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } @Override protected DLFolder removeImpl(DLFolder dlFolder) { dlFolder = toUnwrappedModel(dlFolder); dlFolderToDLFileEntryTypeTableMapper.deleteLeftPrimaryKeyTableMappings(dlFolder.getPrimaryKey()); Session session = null; try { session = openSession(); if (!session.contains(dlFolder)) { dlFolder = (DLFolder)session.get(DLFolderImpl.class, dlFolder.getPrimaryKeyObj()); } if (dlFolder != null) { session.delete(dlFolder); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } if (dlFolder != null) { clearCache(dlFolder); } return dlFolder; } @Override public DLFolder updateImpl(DLFolder dlFolder) { dlFolder = toUnwrappedModel(dlFolder); boolean isNew = dlFolder.isNew(); DLFolderModelImpl dlFolderModelImpl = (DLFolderModelImpl)dlFolder; if (Validator.isNull(dlFolder.getUuid())) { String uuid = PortalUUIDUtil.generate(); dlFolder.setUuid(uuid); } ServiceContext serviceContext = ServiceContextThreadLocal.getServiceContext(); Date now = new Date(); if (isNew && (dlFolder.getCreateDate() == null)) { if (serviceContext == null) { dlFolder.setCreateDate(now); } else { dlFolder.setCreateDate(serviceContext.getCreateDate(now)); } } if (!dlFolderModelImpl.hasSetModifiedDate()) { if (serviceContext == null) { dlFolder.setModifiedDate(now); } else { dlFolder.setModifiedDate(serviceContext.getModifiedDate(now)); } } Session session = null; try { session = openSession(); if (dlFolder.isNew()) { session.save(dlFolder); dlFolder.setNew(false); } else { dlFolder = (DLFolder)session.merge(dlFolder); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); if (!DLFolderModelImpl.COLUMN_BITMASK_ENABLED) { finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } else if (isNew) { Object[] args = new Object[] { dlFolderModelImpl.getUuid() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID, args); args = new Object[] { dlFolderModelImpl.getUuid(), dlFolderModelImpl.getCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C, args); args = new Object[] { dlFolderModelImpl.getGroupId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_GROUPID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID, args); args = new Object[] { dlFolderModelImpl.getCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_COMPANYID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID, args); args = new Object[] { dlFolderModelImpl.getRepositoryId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_REPOSITORYID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_REPOSITORYID, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P, args); args = new Object[] { dlFolderModelImpl.getRepositoryId(), dlFolderModelImpl.getParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_R_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_R_P, args); args = new Object[] { dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getName() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_P_N, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_P_N, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getMountPoint(), dlFolderModelImpl.getParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getMountPoint(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getHidden() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P_H, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getHidden(), dlFolderModelImpl.getStatus() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P_H_S, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P_H_S, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getMountPoint(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getHidden(), dlFolderModelImpl.getStatus() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P_H_S, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H_S, args); finderCache.removeResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL, FINDER_ARGS_EMPTY); } else { if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalUuid() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID, args); args = new Object[] { dlFolderModelImpl.getUuid() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalUuid(), dlFolderModelImpl.getOriginalCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C, args); args = new Object[] { dlFolderModelImpl.getUuid(), dlFolderModelImpl.getCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_UUID_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_GROUPID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID, args); args = new Object[] { dlFolderModelImpl.getGroupId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_GROUPID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_COMPANYID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID, args); args = new Object[] { dlFolderModelImpl.getCompanyId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_COMPANYID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_REPOSITORYID.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalRepositoryId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_REPOSITORYID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_REPOSITORYID, args); args = new Object[] { dlFolderModelImpl.getRepositoryId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_REPOSITORYID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_REPOSITORYID, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId(), dlFolderModelImpl.getOriginalParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_R_P.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalRepositoryId(), dlFolderModelImpl.getOriginalParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_R_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_R_P, args); args = new Object[] { dlFolderModelImpl.getRepositoryId(), dlFolderModelImpl.getParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_R_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_R_P, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_P_N.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalParentFolderId(), dlFolderModelImpl.getOriginalName() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_P_N, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_P_N, args); args = new Object[] { dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getName() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_P_N, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_P_N, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId(), dlFolderModelImpl.getOriginalMountPoint(), dlFolderModelImpl.getOriginalParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getMountPoint(), dlFolderModelImpl.getParentFolderId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId(), dlFolderModelImpl.getOriginalMountPoint(), dlFolderModelImpl.getOriginalParentFolderId(), dlFolderModelImpl.getOriginalHidden() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P_H, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getMountPoint(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getHidden() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P_H, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P_H_S.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId(), dlFolderModelImpl.getOriginalParentFolderId(), dlFolderModelImpl.getOriginalHidden(), dlFolderModelImpl.getOriginalStatus() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P_H_S, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P_H_S, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getHidden(), dlFolderModelImpl.getStatus() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_P_H_S, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_P_H_S, args); } if ((dlFolderModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H_S.getColumnBitmask()) != 0) { Object[] args = new Object[] { dlFolderModelImpl.getOriginalGroupId(), dlFolderModelImpl.getOriginalMountPoint(), dlFolderModelImpl.getOriginalParentFolderId(), dlFolderModelImpl.getOriginalHidden(), dlFolderModelImpl.getOriginalStatus() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P_H_S, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H_S, args); args = new Object[] { dlFolderModelImpl.getGroupId(), dlFolderModelImpl.getMountPoint(), dlFolderModelImpl.getParentFolderId(), dlFolderModelImpl.getHidden(), dlFolderModelImpl.getStatus() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_G_M_P_H_S, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_G_M_P_H_S, args); } } entityCache.putResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, dlFolder.getPrimaryKey(), dlFolder, false); clearUniqueFindersCache(dlFolderModelImpl, false); cacheUniqueFindersCache(dlFolderModelImpl); dlFolder.resetOriginalValues(); return dlFolder; } protected DLFolder toUnwrappedModel(DLFolder dlFolder) { if (dlFolder instanceof DLFolderImpl) { return dlFolder; } DLFolderImpl dlFolderImpl = new DLFolderImpl(); dlFolderImpl.setNew(dlFolder.isNew()); dlFolderImpl.setPrimaryKey(dlFolder.getPrimaryKey()); dlFolderImpl.setUuid(dlFolder.getUuid()); dlFolderImpl.setFolderId(dlFolder.getFolderId()); dlFolderImpl.setGroupId(dlFolder.getGroupId()); dlFolderImpl.setCompanyId(dlFolder.getCompanyId()); dlFolderImpl.setUserId(dlFolder.getUserId()); dlFolderImpl.setUserName(dlFolder.getUserName()); dlFolderImpl.setCreateDate(dlFolder.getCreateDate()); dlFolderImpl.setModifiedDate(dlFolder.getModifiedDate()); dlFolderImpl.setRepositoryId(dlFolder.getRepositoryId()); dlFolderImpl.setMountPoint(dlFolder.isMountPoint()); dlFolderImpl.setParentFolderId(dlFolder.getParentFolderId()); dlFolderImpl.setTreePath(dlFolder.getTreePath()); dlFolderImpl.setName(dlFolder.getName()); dlFolderImpl.setDescription(dlFolder.getDescription()); dlFolderImpl.setLastPostDate(dlFolder.getLastPostDate()); dlFolderImpl.setDefaultFileEntryTypeId(dlFolder.getDefaultFileEntryTypeId()); dlFolderImpl.setHidden(dlFolder.isHidden()); dlFolderImpl.setRestrictionType(dlFolder.getRestrictionType()); dlFolderImpl.setLastPublishDate(dlFolder.getLastPublishDate()); dlFolderImpl.setStatus(dlFolder.getStatus()); dlFolderImpl.setStatusByUserId(dlFolder.getStatusByUserId()); dlFolderImpl.setStatusByUserName(dlFolder.getStatusByUserName()); dlFolderImpl.setStatusDate(dlFolder.getStatusDate()); return dlFolderImpl; } /** * Returns the document library folder 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 document library folder * @return the document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder findByPrimaryKey(Serializable primaryKey) throws NoSuchFolderException { DLFolder dlFolder = fetchByPrimaryKey(primaryKey); if (dlFolder == null) { if (_log.isDebugEnabled()) { _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchFolderException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return dlFolder; } /** * Returns the document library folder with the primary key or throws a {@link NoSuchFolderException} if it could not be found. * * @param folderId the primary key of the document library folder * @return the document library folder * @throws NoSuchFolderException if a document library folder with the primary key could not be found */ @Override public DLFolder findByPrimaryKey(long folderId) throws NoSuchFolderException { return findByPrimaryKey((Serializable)folderId); } /** * Returns the document library folder with the primary key or returns <code>null</code> if it could not be found. * * @param primaryKey the primary key of the document library folder * @return the document library folder, or <code>null</code> if a document library folder with the primary key could not be found */ @Override public DLFolder fetchByPrimaryKey(Serializable primaryKey) { Serializable serializable = entityCache.getResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, primaryKey); if (serializable == nullModel) { return null; } DLFolder dlFolder = (DLFolder)serializable; if (dlFolder == null) { Session session = null; try { session = openSession(); dlFolder = (DLFolder)session.get(DLFolderImpl.class, primaryKey); if (dlFolder != null) { cacheResult(dlFolder); } else { entityCache.putResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, primaryKey, nullModel); } } catch (Exception e) { entityCache.removeResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, primaryKey); throw processException(e); } finally { closeSession(session); } } return dlFolder; } /** * Returns the document library folder with the primary key or returns <code>null</code> if it could not be found. * * @param folderId the primary key of the document library folder * @return the document library folder, or <code>null</code> if a document library folder with the primary key could not be found */ @Override public DLFolder fetchByPrimaryKey(long folderId) { return fetchByPrimaryKey((Serializable)folderId); } @Override public Map<Serializable, DLFolder> fetchByPrimaryKeys( Set<Serializable> primaryKeys) { if (primaryKeys.isEmpty()) { return Collections.emptyMap(); } Map<Serializable, DLFolder> map = new HashMap<Serializable, DLFolder>(); if (primaryKeys.size() == 1) { Iterator<Serializable> iterator = primaryKeys.iterator(); Serializable primaryKey = iterator.next(); DLFolder dlFolder = fetchByPrimaryKey(primaryKey); if (dlFolder != null) { map.put(primaryKey, dlFolder); } return map; } Set<Serializable> uncachedPrimaryKeys = null; for (Serializable primaryKey : primaryKeys) { Serializable serializable = entityCache.getResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, primaryKey); if (serializable != nullModel) { if (serializable == null) { if (uncachedPrimaryKeys == null) { uncachedPrimaryKeys = new HashSet<Serializable>(); } uncachedPrimaryKeys.add(primaryKey); } else { map.put(primaryKey, (DLFolder)serializable); } } } if (uncachedPrimaryKeys == null) { return map; } StringBundler query = new StringBundler((uncachedPrimaryKeys.size() * 2) + 1); query.append(_SQL_SELECT_DLFOLDER_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 (DLFolder dlFolder : (List<DLFolder>)q.list()) { map.put(dlFolder.getPrimaryKeyObj(), dlFolder); cacheResult(dlFolder); uncachedPrimaryKeys.remove(dlFolder.getPrimaryKeyObj()); } for (Serializable primaryKey : uncachedPrimaryKeys) { entityCache.putResult(DLFolderModelImpl.ENTITY_CACHE_ENABLED, DLFolderImpl.class, primaryKey, nullModel); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } return map; } /** * Returns all the document library folders. * * @return the document library folders */ @Override public List<DLFolder> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the document library folders. * * <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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of document library folders */ @Override public List<DLFolder> findAll(int start, int end) { return findAll(start, end, null); } /** * Returns an ordered range of all the document library folders. * * <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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of document library folders */ @Override public List<DLFolder> findAll(int start, int end, OrderByComparator<DLFolder> orderByComparator) { return findAll(start, end, orderByComparator, true); } /** * Returns an ordered range of all the document library folders. * * <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 DLFolderModelImpl}. 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 document library folders * @param end the upper bound of the range of document library folders (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 document library folders */ @Override public List<DLFolder> findAll(int start, int end, OrderByComparator<DLFolder> 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<DLFolder> list = null; if (retrieveFromCache) { list = (List<DLFolder>)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_DLFOLDER); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_DLFOLDER; if (pagination) { sql = sql.concat(DLFolderModelImpl.ORDER_BY_JPQL); } } Session session = null; try { session = openSession(); Query q = session.createQuery(sql); if (!pagination) { list = (List<DLFolder>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<DLFolder>)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 document library folders from the database. * */ @Override public void removeAll() { for (DLFolder dlFolder : findAll()) { remove(dlFolder); } } /** * Returns the number of document library folders. * * @return the number of document library folders */ @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_DLFOLDER); 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(); } /** * Returns the primaryKeys of document library file entry types associated with the document library folder. * * @param pk the primary key of the document library folder * @return long[] of the primaryKeys of document library file entry types associated with the document library folder */ @Override public long[] getDLFileEntryTypePrimaryKeys(long pk) { long[] pks = dlFolderToDLFileEntryTypeTableMapper.getRightPrimaryKeys(pk); return pks.clone(); } /** * Returns all the document library file entry types associated with the document library folder. * * @param pk the primary key of the document library folder * @return the document library file entry types associated with the document library folder */ @Override public List<com.liferay.document.library.kernel.model.DLFileEntryType> getDLFileEntryTypes( long pk) { return getDLFileEntryTypes(pk, QueryUtil.ALL_POS, QueryUtil.ALL_POS); } /** * Returns a range of all the document library file entry types associated with the document library folder. * * <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 DLFolderModelImpl}. 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 pk the primary key of the document library folder * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @return the range of document library file entry types associated with the document library folder */ @Override public List<com.liferay.document.library.kernel.model.DLFileEntryType> getDLFileEntryTypes( long pk, int start, int end) { return getDLFileEntryTypes(pk, start, end, null); } /** * Returns an ordered range of all the document library file entry types associated with the document library folder. * * <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 DLFolderModelImpl}. 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 pk the primary key of the document library folder * @param start the lower bound of the range of document library folders * @param end the upper bound of the range of document library folders (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of document library file entry types associated with the document library folder */ @Override public List<com.liferay.document.library.kernel.model.DLFileEntryType> getDLFileEntryTypes( long pk, int start, int end, OrderByComparator<com.liferay.document.library.kernel.model.DLFileEntryType> orderByComparator) { return dlFolderToDLFileEntryTypeTableMapper.getRightBaseModels(pk, start, end, orderByComparator); } /** * Returns the number of document library file entry types associated with the document library folder. * * @param pk the primary key of the document library folder * @return the number of document library file entry types associated with the document library folder */ @Override public int getDLFileEntryTypesSize(long pk) { long[] pks = dlFolderToDLFileEntryTypeTableMapper.getRightPrimaryKeys(pk); return pks.length; } /** * Returns <code>true</code> if the document library file entry type is associated with the document library folder. * * @param pk the primary key of the document library folder * @param dlFileEntryTypePK the primary key of the document library file entry type * @return <code>true</code> if the document library file entry type is associated with the document library folder; <code>false</code> otherwise */ @Override public boolean containsDLFileEntryType(long pk, long dlFileEntryTypePK) { return dlFolderToDLFileEntryTypeTableMapper.containsTableMapping(pk, dlFileEntryTypePK); } /** * Returns <code>true</code> if the document library folder has any document library file entry types associated with it. * * @param pk the primary key of the document library folder to check for associations with document library file entry types * @return <code>true</code> if the document library folder has any document library file entry types associated with it; <code>false</code> otherwise */ @Override public boolean containsDLFileEntryTypes(long pk) { if (getDLFileEntryTypesSize(pk) > 0) { return true; } else { return false; } } /** * Adds an association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypePK the primary key of the document library file entry type */ @Override public void addDLFileEntryType(long pk, long dlFileEntryTypePK) { DLFolder dlFolder = fetchByPrimaryKey(pk); if (dlFolder == null) { dlFolderToDLFileEntryTypeTableMapper.addTableMapping(companyProvider.getCompanyId(), pk, dlFileEntryTypePK); } else { dlFolderToDLFileEntryTypeTableMapper.addTableMapping(dlFolder.getCompanyId(), pk, dlFileEntryTypePK); } } /** * Adds an association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryType the document library file entry type */ @Override public void addDLFileEntryType(long pk, com.liferay.document.library.kernel.model.DLFileEntryType dlFileEntryType) { DLFolder dlFolder = fetchByPrimaryKey(pk); if (dlFolder == null) { dlFolderToDLFileEntryTypeTableMapper.addTableMapping(companyProvider.getCompanyId(), pk, dlFileEntryType.getPrimaryKey()); } else { dlFolderToDLFileEntryTypeTableMapper.addTableMapping(dlFolder.getCompanyId(), pk, dlFileEntryType.getPrimaryKey()); } } /** * Adds an association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypePKs the primary keys of the document library file entry types */ @Override public void addDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs) { long companyId = 0; DLFolder dlFolder = fetchByPrimaryKey(pk); if (dlFolder == null) { companyId = companyProvider.getCompanyId(); } else { companyId = dlFolder.getCompanyId(); } dlFolderToDLFileEntryTypeTableMapper.addTableMappings(companyId, pk, dlFileEntryTypePKs); } /** * Adds an association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypes the document library file entry types */ @Override public void addDLFileEntryTypes(long pk, List<com.liferay.document.library.kernel.model.DLFileEntryType> dlFileEntryTypes) { addDLFileEntryTypes(pk, ListUtil.toLongArray(dlFileEntryTypes, com.liferay.document.library.kernel.model.DLFileEntryType.FILE_ENTRY_TYPE_ID_ACCESSOR)); } /** * Clears all associations between the document library folder and its document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder to clear the associated document library file entry types from */ @Override public void clearDLFileEntryTypes(long pk) { dlFolderToDLFileEntryTypeTableMapper.deleteLeftPrimaryKeyTableMappings(pk); } /** * Removes the association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypePK the primary key of the document library file entry type */ @Override public void removeDLFileEntryType(long pk, long dlFileEntryTypePK) { dlFolderToDLFileEntryTypeTableMapper.deleteTableMapping(pk, dlFileEntryTypePK); } /** * Removes the association between the document library folder and the document library file entry type. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryType the document library file entry type */ @Override public void removeDLFileEntryType(long pk, com.liferay.document.library.kernel.model.DLFileEntryType dlFileEntryType) { dlFolderToDLFileEntryTypeTableMapper.deleteTableMapping(pk, dlFileEntryType.getPrimaryKey()); } /** * Removes the association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypePKs the primary keys of the document library file entry types */ @Override public void removeDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs) { dlFolderToDLFileEntryTypeTableMapper.deleteTableMappings(pk, dlFileEntryTypePKs); } /** * Removes the association between the document library folder and the document library file entry types. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypes the document library file entry types */ @Override public void removeDLFileEntryTypes(long pk, List<com.liferay.document.library.kernel.model.DLFileEntryType> dlFileEntryTypes) { removeDLFileEntryTypes(pk, ListUtil.toLongArray(dlFileEntryTypes, com.liferay.document.library.kernel.model.DLFileEntryType.FILE_ENTRY_TYPE_ID_ACCESSOR)); } /** * Sets the document library file entry types associated with the document library folder, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypePKs the primary keys of the document library file entry types to be associated with the document library folder */ @Override public void setDLFileEntryTypes(long pk, long[] dlFileEntryTypePKs) { Set<Long> newDLFileEntryTypePKsSet = SetUtil.fromArray(dlFileEntryTypePKs); Set<Long> oldDLFileEntryTypePKsSet = SetUtil.fromArray(dlFolderToDLFileEntryTypeTableMapper.getRightPrimaryKeys( pk)); Set<Long> removeDLFileEntryTypePKsSet = new HashSet<Long>(oldDLFileEntryTypePKsSet); removeDLFileEntryTypePKsSet.removeAll(newDLFileEntryTypePKsSet); dlFolderToDLFileEntryTypeTableMapper.deleteTableMappings(pk, ArrayUtil.toLongArray(removeDLFileEntryTypePKsSet)); newDLFileEntryTypePKsSet.removeAll(oldDLFileEntryTypePKsSet); long companyId = 0; DLFolder dlFolder = fetchByPrimaryKey(pk); if (dlFolder == null) { companyId = companyProvider.getCompanyId(); } else { companyId = dlFolder.getCompanyId(); } dlFolderToDLFileEntryTypeTableMapper.addTableMappings(companyId, pk, ArrayUtil.toLongArray(newDLFileEntryTypePKsSet)); } /** * Sets the document library file entry types associated with the document library folder, removing and adding associations as necessary. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the document library folder * @param dlFileEntryTypes the document library file entry types to be associated with the document library folder */ @Override public void setDLFileEntryTypes(long pk, List<com.liferay.document.library.kernel.model.DLFileEntryType> dlFileEntryTypes) { try { long[] dlFileEntryTypePKs = new long[dlFileEntryTypes.size()]; for (int i = 0; i < dlFileEntryTypes.size(); i++) { com.liferay.document.library.kernel.model.DLFileEntryType dlFileEntryType = dlFileEntryTypes.get(i); dlFileEntryTypePKs[i] = dlFileEntryType.getPrimaryKey(); } setDLFileEntryTypes(pk, dlFileEntryTypePKs); } catch (Exception e) { throw processException(e); } } @Override public Set<String> getBadColumnNames() { return _badColumnNames; } @Override protected Map<String, Integer> getTableColumnsMap() { return DLFolderModelImpl.TABLE_COLUMNS_MAP; } /** * Initializes the document library folder persistence. */ public void afterPropertiesSet() { dlFolderToDLFileEntryTypeTableMapper = TableMapperFactory.getTableMapper("DLFileEntryTypes_DLFolders", "companyId", "folderId", "fileEntryTypeId", this, dlFileEntryTypePersistence); } public void destroy() { entityCache.removeCache(DLFolderImpl.class.getName()); finderCache.removeCache(FINDER_CLASS_NAME_ENTITY); finderCache.removeCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.removeCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); TableMapperFactory.removeTableMapper("DLFileEntryTypes_DLFolders"); } @BeanReference(type = CompanyProviderWrapper.class) protected CompanyProvider companyProvider; protected EntityCache entityCache = EntityCacheUtil.getEntityCache(); protected FinderCache finderCache = FinderCacheUtil.getFinderCache(); @BeanReference(type = DLFileEntryTypePersistence.class) protected DLFileEntryTypePersistence dlFileEntryTypePersistence; protected TableMapper<DLFolder, com.liferay.document.library.kernel.model.DLFileEntryType> dlFolderToDLFileEntryTypeTableMapper; private static final String _SQL_SELECT_DLFOLDER = "SELECT dlFolder FROM DLFolder dlFolder"; private static final String _SQL_SELECT_DLFOLDER_WHERE_PKS_IN = "SELECT dlFolder FROM DLFolder dlFolder WHERE folderId IN ("; private static final String _SQL_SELECT_DLFOLDER_WHERE = "SELECT dlFolder FROM DLFolder dlFolder WHERE "; private static final String _SQL_COUNT_DLFOLDER = "SELECT COUNT(dlFolder) FROM DLFolder dlFolder"; private static final String _SQL_COUNT_DLFOLDER_WHERE = "SELECT COUNT(dlFolder) FROM DLFolder dlFolder WHERE "; private static final String _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN = "dlFolder.folderId"; private static final String _FILTER_SQL_SELECT_DLFOLDER_WHERE = "SELECT DISTINCT {dlFolder.*} FROM DLFolder dlFolder WHERE "; private static final String _FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_1 = "SELECT {DLFolder.*} FROM (SELECT DISTINCT dlFolder.folderId FROM DLFolder dlFolder WHERE "; private static final String _FILTER_SQL_SELECT_DLFOLDER_NO_INLINE_DISTINCT_WHERE_2 = ") TEMP_TABLE INNER JOIN DLFolder ON TEMP_TABLE.folderId = DLFolder.folderId"; private static final String _FILTER_SQL_COUNT_DLFOLDER_WHERE = "SELECT COUNT(DISTINCT dlFolder.folderId) AS COUNT_VALUE FROM DLFolder dlFolder WHERE "; private static final String _FILTER_ENTITY_ALIAS = "dlFolder"; private static final String _FILTER_ENTITY_TABLE = "DLFolder"; private static final String _ORDER_BY_ENTITY_ALIAS = "dlFolder."; private static final String _ORDER_BY_ENTITY_TABLE = "DLFolder."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No DLFolder exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No DLFolder exists with the key {"; private static final Log _log = LogFactoryUtil.getLog(DLFolderPersistenceImpl.class); private static final Set<String> _badColumnNames = SetUtil.fromArray(new String[] { "uuid", "hidden" }); }