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

com.liferay.portlet.asset.service.persistence.AssetTagPersistenceImpl Maven / Gradle / Ivy

There is a newer version: 7.0.0-nightly
Show newest version
/**
 * Copyright (c) 2000-2013 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.asset.service.persistence;

import com.liferay.portal.kernel.bean.BeanReference;
import com.liferay.portal.kernel.cache.CacheRegistryUtil;
import com.liferay.portal.kernel.dao.orm.EntityCacheUtil;
import com.liferay.portal.kernel.dao.orm.FinderCacheUtil;
import com.liferay.portal.kernel.dao.orm.FinderPath;
import com.liferay.portal.kernel.dao.orm.Query;
import com.liferay.portal.kernel.dao.orm.QueryPos;
import com.liferay.portal.kernel.dao.orm.QueryUtil;
import com.liferay.portal.kernel.dao.orm.SQLQuery;
import com.liferay.portal.kernel.dao.orm.Session;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.GetterUtil;
import com.liferay.portal.kernel.util.InstanceFactory;
import com.liferay.portal.kernel.util.OrderByComparator;
import com.liferay.portal.kernel.util.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.UnmodifiableList;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.model.CacheModel;
import com.liferay.portal.model.ModelListener;
import com.liferay.portal.security.permission.InlineSQLHelperUtil;
import com.liferay.portal.service.persistence.impl.BasePersistenceImpl;
import com.liferay.portal.service.persistence.impl.TableMapper;
import com.liferay.portal.service.persistence.impl.TableMapperFactory;

import com.liferay.portlet.asset.NoSuchTagException;
import com.liferay.portlet.asset.model.AssetTag;
import com.liferay.portlet.asset.model.impl.AssetTagImpl;
import com.liferay.portlet.asset.model.impl.AssetTagModelImpl;

import java.io.Serializable;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
 * The persistence implementation for the asset tag service.
 *
 * 

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

* * @author Brian Wing Shun Chan * @see AssetTagPersistence * @see AssetTagUtil * @generated */ public class AssetTagPersistenceImpl extends BasePersistenceImpl implements AssetTagPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link AssetTagUtil} to access the asset tag persistence. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = AssetTagImpl.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(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, AssetTagImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, AssetTagImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.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_GROUPID = new FinderPath(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, AssetTagImpl.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(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, AssetTagImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByGroupId", new String[] { Long.class.getName() }, AssetTagModelImpl.GROUPID_COLUMN_BITMASK | AssetTagModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_GROUPID = new FinderPath(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByGroupId", new String[] { Long.class.getName() }); /** * Returns all the asset tags where groupId = ?. * * @param groupId the group ID * @return the matching asset tags * @throws SystemException if a system exception occurred */ @Override public List findByGroupId(long groupId) throws SystemException { return findByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the asset tags where groupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param groupId the group ID * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @return the range of matching asset tags * @throws SystemException if a system exception occurred */ @Override public List findByGroupId(long groupId, int start, int end) throws SystemException { return findByGroupId(groupId, start, end, null); } /** * Returns an ordered range of all the asset tags where groupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param groupId the group ID * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching asset tags * @throws SystemException if a system exception occurred */ @Override public List findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator) throws SystemException { 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 list = (List)FinderCacheUtil.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (AssetTag assetTag : list) { if ((groupId != assetTag.getGroupId())) { list = null; break; } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_ASSETTAG_WHERE); query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(AssetTagModelImpl.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)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = new UnmodifiableList(list); } else { list = (List)QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } catch (Exception e) { FinderCacheUtil.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; } /** * Returns the first asset tag in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws NoSuchTagException, SystemException { AssetTag assetTag = fetchByGroupId_First(groupId, orderByComparator); if (assetTag != null) { return assetTag; } 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 NoSuchTagException(msg.toString()); } /** * Returns the first asset tag in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching asset tag, or null if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag fetchByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException { List list = findByGroupId(groupId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last asset tag in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws NoSuchTagException, SystemException { AssetTag assetTag = fetchByGroupId_Last(groupId, orderByComparator); if (assetTag != null) { return assetTag; } 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 NoSuchTagException(msg.toString()); } /** * Returns the last asset tag in the ordered set where groupId = ?. * * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching asset tag, or null if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException { int count = countByGroupId(groupId); if (count == 0) { return null; } List list = findByGroupId(groupId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the asset tags before and after the current asset tag in the ordered set where groupId = ?. * * @param tagId the primary key of the current asset tag * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag[] findByGroupId_PrevAndNext(long tagId, long groupId, OrderByComparator orderByComparator) throws NoSuchTagException, SystemException { AssetTag assetTag = findByPrimaryKey(tagId); Session session = null; try { session = openSession(); AssetTag[] array = new AssetTagImpl[3]; array[0] = getByGroupId_PrevAndNext(session, assetTag, groupId, orderByComparator, true); array[1] = assetTag; array[2] = getByGroupId_PrevAndNext(session, assetTag, groupId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected AssetTag getByGroupId_PrevAndNext(Session session, AssetTag assetTag, long groupId, OrderByComparator orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 6)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_ASSETTAG_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(AssetTagModelImpl.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(assetTag); for (Object value : values) { qPos.add(value); } } List list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the asset tags that the user has permission to view where groupId = ?. * * @param groupId the group ID * @return the matching asset tags that the user has permission to view * @throws SystemException if a system exception occurred */ @Override public List filterFindByGroupId(long groupId) throws SystemException { return filterFindByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the asset tags that the user has permission to view where groupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param groupId the group ID * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @return the range of matching asset tags that the user has permission to view * @throws SystemException if a system exception occurred */ @Override public List filterFindByGroupId(long groupId, int start, int end) throws SystemException { return filterFindByGroupId(groupId, start, end, null); } /** * Returns an ordered range of all the asset tags that the user has permissions to view where groupId = ?. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param groupId the group ID * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching asset tags that the user has permission to view * @throws SystemException if a system exception occurred */ @Override public List filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator) throws SystemException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByGroupId(groupId, start, end, orderByComparator); } StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(3); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_ASSETTAG_WHERE); } else { query.append(_FILTER_SQL_SELECT_ASSETTAG_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_ASSETTAG_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(AssetTagModelImpl.ORDER_BY_JPQL); } else { query.append(AssetTagModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), AssetTag.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSQLQuery(sql); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, AssetTagImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, AssetTagImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); return (List)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } /** * Returns the asset tags before and after the current asset tag in the ordered set of asset tags that the user has permission to view where groupId = ?. * * @param tagId the primary key of the current asset tag * @param groupId the group ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag[] filterFindByGroupId_PrevAndNext(long tagId, long groupId, OrderByComparator orderByComparator) throws NoSuchTagException, SystemException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return findByGroupId_PrevAndNext(tagId, groupId, orderByComparator); } AssetTag assetTag = findByPrimaryKey(tagId); Session session = null; try { session = openSession(); AssetTag[] array = new AssetTagImpl[3]; array[0] = filterGetByGroupId_PrevAndNext(session, assetTag, groupId, orderByComparator, true); array[1] = assetTag; array[2] = filterGetByGroupId_PrevAndNext(session, assetTag, groupId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected AssetTag filterGetByGroupId_PrevAndNext(Session session, AssetTag assetTag, long groupId, OrderByComparator orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 6)); } else { query = new StringBundler(3); } if (getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_ASSETTAG_WHERE); } else { query.append(_FILTER_SQL_SELECT_ASSETTAG_NO_INLINE_DISTINCT_WHERE_1); } query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); if (!getDB().isSupportsInlineDistinct()) { query.append(_FILTER_SQL_SELECT_ASSETTAG_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(AssetTagModelImpl.ORDER_BY_JPQL); } else { query.append(AssetTagModelImpl.ORDER_BY_SQL); } } String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), AssetTag.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); SQLQuery q = session.createSQLQuery(sql); q.setFirstResult(0); q.setMaxResults(2); if (getDB().isSupportsInlineDistinct()) { q.addEntity(_FILTER_ENTITY_ALIAS, AssetTagImpl.class); } else { q.addEntity(_FILTER_ENTITY_TABLE, AssetTagImpl.class); } QueryPos qPos = QueryPos.getInstance(q); qPos.add(groupId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(assetTag); for (Object value : values) { qPos.add(value); } } List list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Removes all the asset tags where groupId = ? from the database. * * @param groupId the group ID * @throws SystemException if a system exception occurred */ @Override public void removeByGroupId(long groupId) throws SystemException { for (AssetTag assetTag : findByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(assetTag); } } /** * Returns the number of asset tags where groupId = ?. * * @param groupId the group ID * @return the number of matching asset tags * @throws SystemException if a system exception occurred */ @Override public int countByGroupId(long groupId) throws SystemException { FinderPath finderPath = FINDER_PATH_COUNT_BY_GROUPID; Object[] finderArgs = new Object[] { groupId }; Long count = (Long)FinderCacheUtil.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_ASSETTAG_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(); FinderCacheUtil.putResult(finderPath, finderArgs, count); } catch (Exception e) { FinderCacheUtil.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } /** * Returns the number of asset tags that the user has permission to view where groupId = ?. * * @param groupId the group ID * @return the number of matching asset tags that the user has permission to view * @throws SystemException if a system exception occurred */ @Override public int filterCountByGroupId(long groupId) throws SystemException { if (!InlineSQLHelperUtil.isEnabled(groupId)) { return countByGroupId(groupId); } StringBundler query = new StringBundler(2); query.append(_FILTER_SQL_COUNT_ASSETTAG_WHERE); query.append(_FINDER_COLUMN_GROUPID_GROUPID_2); String sql = InlineSQLHelperUtil.replacePermissionCheck(query.toString(), AssetTag.class.getName(), _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN, groupId); Session session = null; try { session = openSession(); SQLQuery q = session.createSQLQuery(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 = "assetTag.groupId = ?"; public static final FinderPath FINDER_PATH_FETCH_BY_G_N = new FinderPath(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, AssetTagImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByG_N", new String[] { Long.class.getName(), String.class.getName() }, AssetTagModelImpl.GROUPID_COLUMN_BITMASK | AssetTagModelImpl.NAME_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_G_N = new FinderPath(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByG_N", new String[] { Long.class.getName(), String.class.getName() }); /** * Returns the asset tag where groupId = ? and name = ? or throws a {@link com.liferay.portlet.asset.NoSuchTagException} if it could not be found. * * @param groupId the group ID * @param name the name * @return the matching asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag findByG_N(long groupId, String name) throws NoSuchTagException, SystemException { AssetTag assetTag = fetchByG_N(groupId, name); if (assetTag == null) { StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("groupId="); msg.append(groupId); msg.append(", name="); msg.append(name); msg.append(StringPool.CLOSE_CURLY_BRACE); if (_log.isWarnEnabled()) { _log.warn(msg.toString()); } throw new NoSuchTagException(msg.toString()); } return assetTag; } /** * Returns the asset tag where groupId = ? and name = ? or returns null if it could not be found. Uses the finder cache. * * @param groupId the group ID * @param name the name * @return the matching asset tag, or null if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag fetchByG_N(long groupId, String name) throws SystemException { return fetchByG_N(groupId, name, true); } /** * Returns the asset tag where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache. * * @param groupId the group ID * @param name the name * @param retrieveFromCache whether to use the finder cache * @return the matching asset tag, or null if a matching asset tag could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag fetchByG_N(long groupId, String name, boolean retrieveFromCache) throws SystemException { Object[] finderArgs = new Object[] { groupId, name }; Object result = null; if (retrieveFromCache) { result = FinderCacheUtil.getResult(FINDER_PATH_FETCH_BY_G_N, finderArgs, this); } if (result instanceof AssetTag) { AssetTag assetTag = (AssetTag)result; if ((groupId != assetTag.getGroupId()) || !Validator.equals(name, assetTag.getName())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(4); query.append(_SQL_SELECT_ASSETTAG_WHERE); query.append(_FINDER_COLUMN_G_N_GROUPID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_G_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_G_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); if (bindName) { qPos.add(name); } List list = q.list(); if (list.isEmpty()) { FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_G_N, finderArgs, list); } else { if ((list.size() > 1) && _log.isWarnEnabled()) { _log.warn( "AssetTagPersistenceImpl.fetchByG_N(long, String, 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."); } AssetTag assetTag = list.get(0); result = assetTag; cacheResult(assetTag); if ((assetTag.getGroupId() != groupId) || (assetTag.getName() == null) || !assetTag.getName().equals(name)) { FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_G_N, finderArgs, assetTag); } } } catch (Exception e) { FinderCacheUtil.removeResult(FINDER_PATH_FETCH_BY_G_N, finderArgs); throw processException(e); } finally { closeSession(session); } } if (result instanceof List) { return null; } else { return (AssetTag)result; } } /** * Removes the asset tag where groupId = ? and name = ? from the database. * * @param groupId the group ID * @param name the name * @return the asset tag that was removed * @throws SystemException if a system exception occurred */ @Override public AssetTag removeByG_N(long groupId, String name) throws NoSuchTagException, SystemException { AssetTag assetTag = findByG_N(groupId, name); return remove(assetTag); } /** * Returns the number of asset tags where groupId = ? and name = ?. * * @param groupId the group ID * @param name the name * @return the number of matching asset tags * @throws SystemException if a system exception occurred */ @Override public int countByG_N(long groupId, String name) throws SystemException { FinderPath finderPath = FINDER_PATH_COUNT_BY_G_N; Object[] finderArgs = new Object[] { groupId, name }; Long count = (Long)FinderCacheUtil.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_ASSETTAG_WHERE); query.append(_FINDER_COLUMN_G_N_GROUPID_2); boolean bindName = false; if (name == null) { query.append(_FINDER_COLUMN_G_N_NAME_1); } else if (name.equals(StringPool.BLANK)) { query.append(_FINDER_COLUMN_G_N_NAME_3); } else { bindName = true; query.append(_FINDER_COLUMN_G_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); if (bindName) { qPos.add(name); } count = (Long)q.uniqueResult(); FinderCacheUtil.putResult(finderPath, finderArgs, count); } catch (Exception e) { FinderCacheUtil.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } private static final String _FINDER_COLUMN_G_N_GROUPID_2 = "assetTag.groupId = ? AND "; private static final String _FINDER_COLUMN_G_N_NAME_1 = "assetTag.name IS NULL"; private static final String _FINDER_COLUMN_G_N_NAME_2 = "assetTag.name = ?"; private static final String _FINDER_COLUMN_G_N_NAME_3 = "(assetTag.name IS NULL OR assetTag.name = '')"; public AssetTagPersistenceImpl() { setModelClass(AssetTag.class); } /** * Caches the asset tag in the entity cache if it is enabled. * * @param assetTag the asset tag */ @Override public void cacheResult(AssetTag assetTag) { EntityCacheUtil.putResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, assetTag.getPrimaryKey(), assetTag); FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_G_N, new Object[] { assetTag.getGroupId(), assetTag.getName() }, assetTag); assetTag.resetOriginalValues(); } /** * Caches the asset tags in the entity cache if it is enabled. * * @param assetTags the asset tags */ @Override public void cacheResult(List assetTags) { for (AssetTag assetTag : assetTags) { if (EntityCacheUtil.getResult( AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, assetTag.getPrimaryKey()) == null) { cacheResult(assetTag); } else { assetTag.resetOriginalValues(); } } } /** * Clears the cache for all asset tags. * *

* The {@link com.liferay.portal.kernel.dao.orm.EntityCache} and {@link com.liferay.portal.kernel.dao.orm.FinderCache} are both cleared by this method. *

*/ @Override public void clearCache() { if (_HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE) { CacheRegistryUtil.clear(AssetTagImpl.class.getName()); } EntityCacheUtil.clearCache(AssetTagImpl.class.getName()); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_ENTITY); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } /** * Clears the cache for the asset tag. * *

* The {@link com.liferay.portal.kernel.dao.orm.EntityCache} and {@link com.liferay.portal.kernel.dao.orm.FinderCache} are both cleared by this method. *

*/ @Override public void clearCache(AssetTag assetTag) { EntityCacheUtil.removeResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, assetTag.getPrimaryKey()); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); clearUniqueFindersCache(assetTag); } @Override public void clearCache(List assetTags) { FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); for (AssetTag assetTag : assetTags) { EntityCacheUtil.removeResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, assetTag.getPrimaryKey()); clearUniqueFindersCache(assetTag); } } protected void cacheUniqueFindersCache(AssetTag assetTag) { if (assetTag.isNew()) { Object[] args = new Object[] { assetTag.getGroupId(), assetTag.getName() }; FinderCacheUtil.putResult(FINDER_PATH_COUNT_BY_G_N, args, Long.valueOf(1)); FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_G_N, args, assetTag); } else { AssetTagModelImpl assetTagModelImpl = (AssetTagModelImpl)assetTag; if ((assetTagModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_G_N.getColumnBitmask()) != 0) { Object[] args = new Object[] { assetTag.getGroupId(), assetTag.getName() }; FinderCacheUtil.putResult(FINDER_PATH_COUNT_BY_G_N, args, Long.valueOf(1)); FinderCacheUtil.putResult(FINDER_PATH_FETCH_BY_G_N, args, assetTag); } } } protected void clearUniqueFindersCache(AssetTag assetTag) { AssetTagModelImpl assetTagModelImpl = (AssetTagModelImpl)assetTag; Object[] args = new Object[] { assetTag.getGroupId(), assetTag.getName() }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_G_N, args); FinderCacheUtil.removeResult(FINDER_PATH_FETCH_BY_G_N, args); if ((assetTagModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_G_N.getColumnBitmask()) != 0) { args = new Object[] { assetTagModelImpl.getOriginalGroupId(), assetTagModelImpl.getOriginalName() }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_G_N, args); FinderCacheUtil.removeResult(FINDER_PATH_FETCH_BY_G_N, args); } } /** * Creates a new asset tag with the primary key. Does not add the asset tag to the database. * * @param tagId the primary key for the new asset tag * @return the new asset tag */ @Override public AssetTag create(long tagId) { AssetTag assetTag = new AssetTagImpl(); assetTag.setNew(true); assetTag.setPrimaryKey(tagId); return assetTag; } /** * Removes the asset tag with the primary key from the database. Also notifies the appropriate model listeners. * * @param tagId the primary key of the asset tag * @return the asset tag that was removed * @throws com.liferay.portlet.asset.NoSuchTagException if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag remove(long tagId) throws NoSuchTagException, SystemException { return remove((Serializable)tagId); } /** * Removes the asset tag with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the asset tag * @return the asset tag that was removed * @throws com.liferay.portlet.asset.NoSuchTagException if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag remove(Serializable primaryKey) throws NoSuchTagException, SystemException { Session session = null; try { session = openSession(); AssetTag assetTag = (AssetTag)session.get(AssetTagImpl.class, primaryKey); if (assetTag == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchTagException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(assetTag); } catch (NoSuchTagException nsee) { throw nsee; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } @Override protected AssetTag removeImpl(AssetTag assetTag) throws SystemException { assetTag = toUnwrappedModel(assetTag); assetTagToAssetEntryTableMapper.deleteLeftPrimaryKeyTableMappings(assetTag.getPrimaryKey()); Session session = null; try { session = openSession(); if (!session.contains(assetTag)) { assetTag = (AssetTag)session.get(AssetTagImpl.class, assetTag.getPrimaryKeyObj()); } if (assetTag != null) { session.delete(assetTag); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } if (assetTag != null) { clearCache(assetTag); } return assetTag; } @Override public AssetTag updateImpl( com.liferay.portlet.asset.model.AssetTag assetTag) throws SystemException { assetTag = toUnwrappedModel(assetTag); boolean isNew = assetTag.isNew(); AssetTagModelImpl assetTagModelImpl = (AssetTagModelImpl)assetTag; Session session = null; try { session = openSession(); if (assetTag.isNew()) { session.save(assetTag); assetTag.setNew(false); } else { session.merge(assetTag); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); if (isNew || !AssetTagModelImpl.COLUMN_BITMASK_ENABLED) { FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } else { if ((assetTagModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID.getColumnBitmask()) != 0) { Object[] args = new Object[] { assetTagModelImpl.getOriginalGroupId() }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_GROUPID, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID, args); args = new Object[] { assetTagModelImpl.getGroupId() }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_GROUPID, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID, args); } } EntityCacheUtil.putResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, assetTag.getPrimaryKey(), assetTag); clearUniqueFindersCache(assetTag); cacheUniqueFindersCache(assetTag); return assetTag; } protected AssetTag toUnwrappedModel(AssetTag assetTag) { if (assetTag instanceof AssetTagImpl) { return assetTag; } AssetTagImpl assetTagImpl = new AssetTagImpl(); assetTagImpl.setNew(assetTag.isNew()); assetTagImpl.setPrimaryKey(assetTag.getPrimaryKey()); assetTagImpl.setTagId(assetTag.getTagId()); assetTagImpl.setGroupId(assetTag.getGroupId()); assetTagImpl.setCompanyId(assetTag.getCompanyId()); assetTagImpl.setUserId(assetTag.getUserId()); assetTagImpl.setUserName(assetTag.getUserName()); assetTagImpl.setCreateDate(assetTag.getCreateDate()); assetTagImpl.setModifiedDate(assetTag.getModifiedDate()); assetTagImpl.setName(assetTag.getName()); assetTagImpl.setAssetCount(assetTag.getAssetCount()); return assetTagImpl; } /** * Returns the asset tag with the primary key or throws a {@link com.liferay.portal.NoSuchModelException} if it could not be found. * * @param primaryKey the primary key of the asset tag * @return the asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag findByPrimaryKey(Serializable primaryKey) throws NoSuchTagException, SystemException { AssetTag assetTag = fetchByPrimaryKey(primaryKey); if (assetTag == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchTagException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return assetTag; } /** * Returns the asset tag with the primary key or throws a {@link com.liferay.portlet.asset.NoSuchTagException} if it could not be found. * * @param tagId the primary key of the asset tag * @return the asset tag * @throws com.liferay.portlet.asset.NoSuchTagException if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag findByPrimaryKey(long tagId) throws NoSuchTagException, SystemException { return findByPrimaryKey((Serializable)tagId); } /** * Returns the asset tag with the primary key or returns null if it could not be found. * * @param primaryKey the primary key of the asset tag * @return the asset tag, or null if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag fetchByPrimaryKey(Serializable primaryKey) throws SystemException { AssetTag assetTag = (AssetTag)EntityCacheUtil.getResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, primaryKey); if (assetTag == _nullAssetTag) { return null; } if (assetTag == null) { Session session = null; try { session = openSession(); assetTag = (AssetTag)session.get(AssetTagImpl.class, primaryKey); if (assetTag != null) { cacheResult(assetTag); } else { EntityCacheUtil.putResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, primaryKey, _nullAssetTag); } } catch (Exception e) { EntityCacheUtil.removeResult(AssetTagModelImpl.ENTITY_CACHE_ENABLED, AssetTagImpl.class, primaryKey); throw processException(e); } finally { closeSession(session); } } return assetTag; } /** * Returns the asset tag with the primary key or returns null if it could not be found. * * @param tagId the primary key of the asset tag * @return the asset tag, or null if a asset tag with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public AssetTag fetchByPrimaryKey(long tagId) throws SystemException { return fetchByPrimaryKey((Serializable)tagId); } /** * Returns all the asset tags. * * @return the asset tags * @throws SystemException if a system exception occurred */ @Override public List findAll() throws SystemException { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the asset tags. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @return the range of asset tags * @throws SystemException if a system exception occurred */ @Override public List findAll(int start, int end) throws SystemException { return findAll(start, end, null); } /** * Returns an ordered range of all the asset tags. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of asset tags * @throws SystemException if a system exception occurred */ @Override public List findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException { 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 list = (List)FinderCacheUtil.getResult(finderPath, finderArgs, this); if (list == null) { StringBundler query = null; String sql = null; if (orderByComparator != null) { query = new StringBundler(2 + (orderByComparator.getOrderByFields().length * 3)); query.append(_SQL_SELECT_ASSETTAG); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_ASSETTAG; if (pagination) { sql = sql.concat(AssetTagModelImpl.ORDER_BY_JPQL); } } Session session = null; try { session = openSession(); Query q = session.createQuery(sql); if (!pagination) { list = (List)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = new UnmodifiableList(list); } else { list = (List)QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } catch (Exception e) { FinderCacheUtil.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; } /** * Removes all the asset tags from the database. * * @throws SystemException if a system exception occurred */ @Override public void removeAll() throws SystemException { for (AssetTag assetTag : findAll()) { remove(assetTag); } } /** * Returns the number of asset tags. * * @return the number of asset tags * @throws SystemException if a system exception occurred */ @Override public int countAll() throws SystemException { Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, this); if (count == null) { Session session = null; try { session = openSession(); Query q = session.createQuery(_SQL_COUNT_ASSETTAG); count = (Long)q.uniqueResult(); FinderCacheUtil.putResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, count); } catch (Exception e) { FinderCacheUtil.removeResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } /** * Returns all the asset entries associated with the asset tag. * * @param pk the primary key of the asset tag * @return the asset entries associated with the asset tag * @throws SystemException if a system exception occurred */ @Override public List getAssetEntries( long pk) throws SystemException { return getAssetEntries(pk, QueryUtil.ALL_POS, QueryUtil.ALL_POS); } /** * Returns a range of all the asset entries associated with the asset tag. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the asset tag * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @return the range of asset entries associated with the asset tag * @throws SystemException if a system exception occurred */ @Override public List getAssetEntries( long pk, int start, int end) throws SystemException { return getAssetEntries(pk, start, end, null); } /** * Returns an ordered range of all the asset entries associated with the asset tag. * *

* Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.asset.model.impl.AssetTagModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param pk the primary key of the asset tag * @param start the lower bound of the range of asset tags * @param end the upper bound of the range of asset tags (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of asset entries associated with the asset tag * @throws SystemException if a system exception occurred */ @Override public List getAssetEntries( long pk, int start, int end, OrderByComparator orderByComparator) throws SystemException { return assetTagToAssetEntryTableMapper.getRightBaseModels(pk, start, end, orderByComparator); } /** * Returns the number of asset entries associated with the asset tag. * * @param pk the primary key of the asset tag * @return the number of asset entries associated with the asset tag * @throws SystemException if a system exception occurred */ @Override public int getAssetEntriesSize(long pk) throws SystemException { long[] pks = assetTagToAssetEntryTableMapper.getRightPrimaryKeys(pk); return pks.length; } /** * Returns true if the asset entry is associated with the asset tag. * * @param pk the primary key of the asset tag * @param assetEntryPK the primary key of the asset entry * @return true if the asset entry is associated with the asset tag; false otherwise * @throws SystemException if a system exception occurred */ @Override public boolean containsAssetEntry(long pk, long assetEntryPK) throws SystemException { return assetTagToAssetEntryTableMapper.containsTableMapping(pk, assetEntryPK); } /** * Returns true if the asset tag has any asset entries associated with it. * * @param pk the primary key of the asset tag to check for associations with asset entries * @return true if the asset tag has any asset entries associated with it; false otherwise * @throws SystemException if a system exception occurred */ @Override public boolean containsAssetEntries(long pk) throws SystemException { if (getAssetEntriesSize(pk) > 0) { return true; } else { return false; } } /** * Adds an association between the asset tag and the asset entry. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntryPK the primary key of the asset entry * @throws SystemException if a system exception occurred */ @Override public void addAssetEntry(long pk, long assetEntryPK) throws SystemException { assetTagToAssetEntryTableMapper.addTableMapping(pk, assetEntryPK); } /** * Adds an association between the asset tag and the asset entry. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntry the asset entry * @throws SystemException if a system exception occurred */ @Override public void addAssetEntry(long pk, com.liferay.portlet.asset.model.AssetEntry assetEntry) throws SystemException { assetTagToAssetEntryTableMapper.addTableMapping(pk, assetEntry.getPrimaryKey()); } /** * Adds an association between the asset tag and the asset entries. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntryPKs the primary keys of the asset entries * @throws SystemException if a system exception occurred */ @Override public void addAssetEntries(long pk, long[] assetEntryPKs) throws SystemException { for (long assetEntryPK : assetEntryPKs) { assetTagToAssetEntryTableMapper.addTableMapping(pk, assetEntryPK); } } /** * Adds an association between the asset tag and the asset entries. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntries the asset entries * @throws SystemException if a system exception occurred */ @Override public void addAssetEntries(long pk, List assetEntries) throws SystemException { for (com.liferay.portlet.asset.model.AssetEntry assetEntry : assetEntries) { assetTagToAssetEntryTableMapper.addTableMapping(pk, assetEntry.getPrimaryKey()); } } /** * Clears all associations between the asset tag and its asset entries. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag to clear the associated asset entries from * @throws SystemException if a system exception occurred */ @Override public void clearAssetEntries(long pk) throws SystemException { assetTagToAssetEntryTableMapper.deleteLeftPrimaryKeyTableMappings(pk); } /** * Removes the association between the asset tag and the asset entry. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntryPK the primary key of the asset entry * @throws SystemException if a system exception occurred */ @Override public void removeAssetEntry(long pk, long assetEntryPK) throws SystemException { assetTagToAssetEntryTableMapper.deleteTableMapping(pk, assetEntryPK); } /** * Removes the association between the asset tag and the asset entry. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntry the asset entry * @throws SystemException if a system exception occurred */ @Override public void removeAssetEntry(long pk, com.liferay.portlet.asset.model.AssetEntry assetEntry) throws SystemException { assetTagToAssetEntryTableMapper.deleteTableMapping(pk, assetEntry.getPrimaryKey()); } /** * Removes the association between the asset tag and the asset entries. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntryPKs the primary keys of the asset entries * @throws SystemException if a system exception occurred */ @Override public void removeAssetEntries(long pk, long[] assetEntryPKs) throws SystemException { for (long assetEntryPK : assetEntryPKs) { assetTagToAssetEntryTableMapper.deleteTableMapping(pk, assetEntryPK); } } /** * Removes the association between the asset tag and the asset entries. Also notifies the appropriate model listeners and clears the mapping table finder cache. * * @param pk the primary key of the asset tag * @param assetEntries the asset entries * @throws SystemException if a system exception occurred */ @Override public void removeAssetEntries(long pk, List assetEntries) throws SystemException { for (com.liferay.portlet.asset.model.AssetEntry assetEntry : assetEntries) { assetTagToAssetEntryTableMapper.deleteTableMapping(pk, assetEntry.getPrimaryKey()); } } /** * Sets the asset entries associated with the asset tag, 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 asset tag * @param assetEntryPKs the primary keys of the asset entries to be associated with the asset tag * @throws SystemException if a system exception occurred */ @Override public void setAssetEntries(long pk, long[] assetEntryPKs) throws SystemException { Set newAssetEntryPKsSet = SetUtil.fromArray(assetEntryPKs); Set oldAssetEntryPKsSet = SetUtil.fromArray(assetTagToAssetEntryTableMapper.getRightPrimaryKeys( pk)); Set removeAssetEntryPKsSet = new HashSet(oldAssetEntryPKsSet); removeAssetEntryPKsSet.removeAll(newAssetEntryPKsSet); for (long removeAssetEntryPK : removeAssetEntryPKsSet) { assetTagToAssetEntryTableMapper.deleteTableMapping(pk, removeAssetEntryPK); } newAssetEntryPKsSet.removeAll(oldAssetEntryPKsSet); for (long newAssetEntryPK : newAssetEntryPKsSet) { assetTagToAssetEntryTableMapper.addTableMapping(pk, newAssetEntryPK); } } /** * Sets the asset entries associated with the asset tag, 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 asset tag * @param assetEntries the asset entries to be associated with the asset tag * @throws SystemException if a system exception occurred */ @Override public void setAssetEntries(long pk, List assetEntries) throws SystemException { try { long[] assetEntryPKs = new long[assetEntries.size()]; for (int i = 0; i < assetEntries.size(); i++) { com.liferay.portlet.asset.model.AssetEntry assetEntry = assetEntries.get(i); assetEntryPKs[i] = assetEntry.getPrimaryKey(); } setAssetEntries(pk, assetEntryPKs); } catch (Exception e) { throw processException(e); } finally { FinderCacheUtil.clearCache(AssetTagModelImpl.MAPPING_TABLE_ASSETENTRIES_ASSETTAGS_NAME); } } /** * Initializes the asset tag persistence. */ public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.portal.util.PropsUtil.get( "value.object.listener.com.liferay.portlet.asset.model.AssetTag"))); if (listenerClassNames.length > 0) { try { List> listenersList = new ArrayList>(); for (String listenerClassName : listenerClassNames) { listenersList.add((ModelListener)InstanceFactory.newInstance( getClassLoader(), listenerClassName)); } listeners = listenersList.toArray(new ModelListener[listenersList.size()]); } catch (Exception e) { _log.error(e); } } assetTagToAssetEntryTableMapper = TableMapperFactory.getTableMapper("AssetEntries_AssetTags", "tagId", "entryId", this, assetEntryPersistence); } public void destroy() { EntityCacheUtil.removeCache(AssetTagImpl.class.getName()); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_ENTITY); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @BeanReference(type = AssetEntryPersistence.class) protected AssetEntryPersistence assetEntryPersistence; protected TableMapper assetTagToAssetEntryTableMapper; private static final String _SQL_SELECT_ASSETTAG = "SELECT assetTag FROM AssetTag assetTag"; private static final String _SQL_SELECT_ASSETTAG_WHERE = "SELECT assetTag FROM AssetTag assetTag WHERE "; private static final String _SQL_COUNT_ASSETTAG = "SELECT COUNT(assetTag) FROM AssetTag assetTag"; private static final String _SQL_COUNT_ASSETTAG_WHERE = "SELECT COUNT(assetTag) FROM AssetTag assetTag WHERE "; private static final String _FILTER_ENTITY_TABLE_FILTER_PK_COLUMN = "assetTag.tagId"; private static final String _FILTER_SQL_SELECT_ASSETTAG_WHERE = "SELECT DISTINCT {assetTag.*} FROM AssetTag assetTag WHERE "; private static final String _FILTER_SQL_SELECT_ASSETTAG_NO_INLINE_DISTINCT_WHERE_1 = "SELECT {AssetTag.*} FROM (SELECT DISTINCT assetTag.tagId FROM AssetTag assetTag WHERE "; private static final String _FILTER_SQL_SELECT_ASSETTAG_NO_INLINE_DISTINCT_WHERE_2 = ") TEMP_TABLE INNER JOIN AssetTag ON TEMP_TABLE.tagId = AssetTag.tagId"; private static final String _FILTER_SQL_COUNT_ASSETTAG_WHERE = "SELECT COUNT(DISTINCT assetTag.tagId) AS COUNT_VALUE FROM AssetTag assetTag WHERE "; private static final String _FILTER_ENTITY_ALIAS = "assetTag"; private static final String _FILTER_ENTITY_TABLE = "AssetTag"; private static final String _ORDER_BY_ENTITY_ALIAS = "assetTag."; private static final String _ORDER_BY_ENTITY_TABLE = "AssetTag."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No AssetTag exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No AssetTag exists with the key {"; private static final boolean _HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE = com.liferay.portal.util.PropsValues.HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE; private static Log _log = LogFactoryUtil.getLog(AssetTagPersistenceImpl.class); private static AssetTag _nullAssetTag = new AssetTagImpl() { @Override public Object clone() { return this; } @Override public CacheModel toCacheModel() { return _nullAssetTagCacheModel; } }; private static CacheModel _nullAssetTagCacheModel = new CacheModel() { @Override public AssetTag toEntityModel() { return _nullAssetTag; } }; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy