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

com.liferay.dynamic.data.mapping.service.persistence.impl.DDMStructureLinkPersistenceImpl Maven / Gradle / Ivy

/**
 * 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.dynamic.data.mapping.service.persistence.impl;

import aQute.bnd.annotation.ProviderType;

import com.liferay.dynamic.data.mapping.exception.NoSuchStructureLinkException;
import com.liferay.dynamic.data.mapping.model.DDMStructureLink;
import com.liferay.dynamic.data.mapping.model.impl.DDMStructureLinkImpl;
import com.liferay.dynamic.data.mapping.model.impl.DDMStructureLinkModelImpl;
import com.liferay.dynamic.data.mapping.service.persistence.DDMStructureLinkPersistence;

import com.liferay.portal.kernel.dao.orm.EntityCache;
import com.liferay.portal.kernel.dao.orm.FinderCache;
import com.liferay.portal.kernel.dao.orm.FinderPath;
import com.liferay.portal.kernel.dao.orm.Query;
import com.liferay.portal.kernel.dao.orm.QueryPos;
import com.liferay.portal.kernel.dao.orm.QueryUtil;
import com.liferay.portal.kernel.dao.orm.Session;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.model.CacheModel;
import com.liferay.portal.kernel.service.persistence.CompanyProvider;
import com.liferay.portal.kernel.service.persistence.CompanyProviderWrapper;
import com.liferay.portal.kernel.service.persistence.impl.BasePersistenceImpl;
import com.liferay.portal.kernel.util.OrderByComparator;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.StringPool;
import com.liferay.portal.spring.extender.service.ServiceReference;

import java.io.Serializable;

import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

/**
 * The persistence implementation for the d d m structure link service.
 *
 * 

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

* * @author Brian Wing Shun Chan * @see DDMStructureLinkPersistence * @see com.liferay.dynamic.data.mapping.service.persistence.DDMStructureLinkUtil * @generated */ @ProviderType public class DDMStructureLinkPersistenceImpl extends BasePersistenceImpl implements DDMStructureLinkPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link DDMStructureLinkUtil} to access the d d m structure link persistence. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = DDMStructureLinkImpl.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(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.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_CLASSNAMEID = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByClassNameId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CLASSNAMEID = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByClassNameId", new String[] { Long.class.getName() }, DDMStructureLinkModelImpl.CLASSNAMEID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_CLASSNAMEID = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByClassNameId", new String[] { Long.class.getName() }); /** * Returns all the d d m structure links where classNameId = ?. * * @param classNameId the class name ID * @return the matching d d m structure links */ @Override public List findByClassNameId(long classNameId) { return findByClassNameId(classNameId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the d d m structure links where classNameId = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 classNameId the class name ID * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @return the range of matching d d m structure links */ @Override public List findByClassNameId(long classNameId, int start, int end) { return findByClassNameId(classNameId, start, end, null); } /** * Returns an ordered range of all the d d m structure links where classNameId = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 classNameId the class name ID * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching d d m structure links */ @Override public List findByClassNameId(long classNameId, int start, int end, OrderByComparator orderByComparator) { return findByClassNameId(classNameId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the d d m structure links where classNameId = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 classNameId the class name ID * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching d d m structure links */ @Override public List findByClassNameId(long classNameId, int start, int end, OrderByComparator 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_CLASSNAMEID; finderArgs = new Object[] { classNameId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_CLASSNAMEID; finderArgs = new Object[] { classNameId, start, end, orderByComparator }; } List list = null; if (retrieveFromCache) { list = (List)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DDMStructureLink ddmStructureLink : list) { if ((classNameId != ddmStructureLink.getClassNameId())) { 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_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_CLASSNAMEID_CLASSNAMEID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DDMStructureLinkModelImpl.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(classNameId); if (!pagination) { list = (List)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List)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 d d m structure link in the ordered set where classNameId = ?. * * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByClassNameId_First(long classNameId, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByClassNameId_First(classNameId, orderByComparator); if (ddmStructureLink != null) { return ddmStructureLink; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("classNameId="); msg.append(classNameId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchStructureLinkException(msg.toString()); } /** * Returns the first d d m structure link in the ordered set where classNameId = ?. * * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByClassNameId_First(long classNameId, OrderByComparator orderByComparator) { List list = findByClassNameId(classNameId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last d d m structure link in the ordered set where classNameId = ?. * * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByClassNameId_Last(long classNameId, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByClassNameId_Last(classNameId, orderByComparator); if (ddmStructureLink != null) { return ddmStructureLink; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("classNameId="); msg.append(classNameId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchStructureLinkException(msg.toString()); } /** * Returns the last d d m structure link in the ordered set where classNameId = ?. * * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByClassNameId_Last(long classNameId, OrderByComparator orderByComparator) { int count = countByClassNameId(classNameId); if (count == 0) { return null; } List list = findByClassNameId(classNameId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the d d m structure links before and after the current d d m structure link in the ordered set where classNameId = ?. * * @param structureLinkId the primary key of the current d d m structure link * @param classNameId the class name ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next d d m structure link * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink[] findByClassNameId_PrevAndNext( long structureLinkId, long classNameId, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = findByPrimaryKey(structureLinkId); Session session = null; try { session = openSession(); DDMStructureLink[] array = new DDMStructureLinkImpl[3]; array[0] = getByClassNameId_PrevAndNext(session, ddmStructureLink, classNameId, orderByComparator, true); array[1] = ddmStructureLink; array[2] = getByClassNameId_PrevAndNext(session, ddmStructureLink, classNameId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DDMStructureLink getByClassNameId_PrevAndNext(Session session, DDMStructureLink ddmStructureLink, long classNameId, OrderByComparator 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_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_CLASSNAMEID_CLASSNAMEID_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(DDMStructureLinkModelImpl.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(classNameId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(ddmStructureLink); 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 d d m structure links where classNameId = ? from the database. * * @param classNameId the class name ID */ @Override public void removeByClassNameId(long classNameId) { for (DDMStructureLink ddmStructureLink : findByClassNameId( classNameId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(ddmStructureLink); } } /** * Returns the number of d d m structure links where classNameId = ?. * * @param classNameId the class name ID * @return the number of matching d d m structure links */ @Override public int countByClassNameId(long classNameId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_CLASSNAMEID; Object[] finderArgs = new Object[] { classNameId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_CLASSNAMEID_CLASSNAMEID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(classNameId); 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_CLASSNAMEID_CLASSNAMEID_2 = "ddmStructureLink.classNameId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_STRUCTUREID = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByStructureId", new String[] { Long.class.getName(), Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_STRUCTUREID = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByStructureId", new String[] { Long.class.getName() }, DDMStructureLinkModelImpl.STRUCTUREID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_STRUCTUREID = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByStructureId", new String[] { Long.class.getName() }); /** * Returns all the d d m structure links where structureId = ?. * * @param structureId the structure ID * @return the matching d d m structure links */ @Override public List findByStructureId(long structureId) { return findByStructureId(structureId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the d d m structure links where structureId = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 structureId the structure ID * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @return the range of matching d d m structure links */ @Override public List findByStructureId(long structureId, int start, int end) { return findByStructureId(structureId, start, end, null); } /** * Returns an ordered range of all the d d m structure links where structureId = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 structureId the structure ID * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching d d m structure links */ @Override public List findByStructureId(long structureId, int start, int end, OrderByComparator orderByComparator) { return findByStructureId(structureId, start, end, orderByComparator, true); } /** * Returns an ordered range of all the d d m structure links where structureId = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 structureId the structure ID * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching d d m structure links */ @Override public List findByStructureId(long structureId, int start, int end, OrderByComparator 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_STRUCTUREID; finderArgs = new Object[] { structureId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_STRUCTUREID; finderArgs = new Object[] { structureId, start, end, orderByComparator }; } List list = null; if (retrieveFromCache) { list = (List)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DDMStructureLink ddmStructureLink : list) { if ((structureId != ddmStructureLink.getStructureId())) { 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_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_STRUCTUREID_STRUCTUREID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DDMStructureLinkModelImpl.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(structureId); if (!pagination) { list = (List)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List)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 d d m structure link in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByStructureId_First(long structureId, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByStructureId_First(structureId, orderByComparator); if (ddmStructureLink != null) { return ddmStructureLink; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("structureId="); msg.append(structureId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchStructureLinkException(msg.toString()); } /** * Returns the first d d m structure link in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByStructureId_First(long structureId, OrderByComparator orderByComparator) { List list = findByStructureId(structureId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last d d m structure link in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByStructureId_Last(long structureId, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByStructureId_Last(structureId, orderByComparator); if (ddmStructureLink != null) { return ddmStructureLink; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("structureId="); msg.append(structureId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchStructureLinkException(msg.toString()); } /** * Returns the last d d m structure link in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByStructureId_Last(long structureId, OrderByComparator orderByComparator) { int count = countByStructureId(structureId); if (count == 0) { return null; } List list = findByStructureId(structureId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the d d m structure links before and after the current d d m structure link in the ordered set where structureId = ?. * * @param structureLinkId the primary key of the current d d m structure link * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next d d m structure link * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink[] findByStructureId_PrevAndNext( long structureLinkId, long structureId, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = findByPrimaryKey(structureLinkId); Session session = null; try { session = openSession(); DDMStructureLink[] array = new DDMStructureLinkImpl[3]; array[0] = getByStructureId_PrevAndNext(session, ddmStructureLink, structureId, orderByComparator, true); array[1] = ddmStructureLink; array[2] = getByStructureId_PrevAndNext(session, ddmStructureLink, structureId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DDMStructureLink getByStructureId_PrevAndNext(Session session, DDMStructureLink ddmStructureLink, long structureId, OrderByComparator 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_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_STRUCTUREID_STRUCTUREID_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(DDMStructureLinkModelImpl.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(structureId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(ddmStructureLink); 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 d d m structure links where structureId = ? from the database. * * @param structureId the structure ID */ @Override public void removeByStructureId(long structureId) { for (DDMStructureLink ddmStructureLink : findByStructureId( structureId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(ddmStructureLink); } } /** * Returns the number of d d m structure links where structureId = ?. * * @param structureId the structure ID * @return the number of matching d d m structure links */ @Override public int countByStructureId(long structureId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_STRUCTUREID; Object[] finderArgs = new Object[] { structureId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_STRUCTUREID_STRUCTUREID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(structureId); 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_STRUCTUREID_STRUCTUREID_2 = "ddmStructureLink.structureId = ?"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByC_C", 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_C_C = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByC_C", new String[] { Long.class.getName(), Long.class.getName() }, DDMStructureLinkModelImpl.CLASSNAMEID_COLUMN_BITMASK | DDMStructureLinkModelImpl.CLASSPK_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_C_C = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByC_C", new String[] { Long.class.getName(), Long.class.getName() }); /** * Returns all the d d m structure links where classNameId = ? and classPK = ?. * * @param classNameId the class name ID * @param classPK the class p k * @return the matching d d m structure links */ @Override public List findByC_C(long classNameId, long classPK) { return findByC_C(classNameId, classPK, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the d d m structure links where classNameId = ? and classPK = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 classNameId the class name ID * @param classPK the class p k * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @return the range of matching d d m structure links */ @Override public List findByC_C(long classNameId, long classPK, int start, int end) { return findByC_C(classNameId, classPK, start, end, null); } /** * Returns an ordered range of all the d d m structure links where classNameId = ? and classPK = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 classNameId the class name ID * @param classPK the class p k * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching d d m structure links */ @Override public List findByC_C(long classNameId, long classPK, int start, int end, OrderByComparator orderByComparator) { return findByC_C(classNameId, classPK, start, end, orderByComparator, true); } /** * Returns an ordered range of all the d d m structure links where classNameId = ? and classPK = ?. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 classNameId the class name ID * @param classPK the class p k * @param start the lower bound of the range of d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching d d m structure links */ @Override public List findByC_C(long classNameId, long classPK, int start, int end, OrderByComparator 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_C_C; finderArgs = new Object[] { classNameId, classPK }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C; finderArgs = new Object[] { classNameId, classPK, start, end, orderByComparator }; } List list = null; if (retrieveFromCache) { list = (List)finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (DDMStructureLink ddmStructureLink : list) { if ((classNameId != ddmStructureLink.getClassNameId()) || (classPK != ddmStructureLink.getClassPK())) { 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_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_C_C_CLASSNAMEID_2); query.append(_FINDER_COLUMN_C_C_CLASSPK_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(DDMStructureLinkModelImpl.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(classNameId); qPos.add(classPK); if (!pagination) { list = (List)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List)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 d d m structure link in the ordered set where classNameId = ? and classPK = ?. * * @param classNameId the class name ID * @param classPK the class p k * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByC_C_First(long classNameId, long classPK, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByC_C_First(classNameId, classPK, orderByComparator); if (ddmStructureLink != null) { return ddmStructureLink; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("classNameId="); msg.append(classNameId); msg.append(", classPK="); msg.append(classPK); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchStructureLinkException(msg.toString()); } /** * Returns the first d d m structure link in the ordered set where classNameId = ? and classPK = ?. * * @param classNameId the class name ID * @param classPK the class p k * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByC_C_First(long classNameId, long classPK, OrderByComparator orderByComparator) { List list = findByC_C(classNameId, classPK, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last d d m structure link in the ordered set where classNameId = ? and classPK = ?. * * @param classNameId the class name ID * @param classPK the class p k * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByC_C_Last(long classNameId, long classPK, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByC_C_Last(classNameId, classPK, orderByComparator); if (ddmStructureLink != null) { return ddmStructureLink; } StringBundler msg = new StringBundler(6); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("classNameId="); msg.append(classNameId); msg.append(", classPK="); msg.append(classPK); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchStructureLinkException(msg.toString()); } /** * Returns the last d d m structure link in the ordered set where classNameId = ? and classPK = ?. * * @param classNameId the class name ID * @param classPK the class p k * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByC_C_Last(long classNameId, long classPK, OrderByComparator orderByComparator) { int count = countByC_C(classNameId, classPK); if (count == 0) { return null; } List list = findByC_C(classNameId, classPK, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the d d m structure links before and after the current d d m structure link in the ordered set where classNameId = ? and classPK = ?. * * @param structureLinkId the primary key of the current d d m structure link * @param classNameId the class name ID * @param classPK the class p k * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next d d m structure link * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink[] findByC_C_PrevAndNext(long structureLinkId, long classNameId, long classPK, OrderByComparator orderByComparator) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = findByPrimaryKey(structureLinkId); Session session = null; try { session = openSession(); DDMStructureLink[] array = new DDMStructureLinkImpl[3]; array[0] = getByC_C_PrevAndNext(session, ddmStructureLink, classNameId, classPK, orderByComparator, true); array[1] = ddmStructureLink; array[2] = getByC_C_PrevAndNext(session, ddmStructureLink, classNameId, classPK, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected DDMStructureLink getByC_C_PrevAndNext(Session session, DDMStructureLink ddmStructureLink, long classNameId, long classPK, OrderByComparator 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_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_C_C_CLASSNAMEID_2); query.append(_FINDER_COLUMN_C_C_CLASSPK_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(DDMStructureLinkModelImpl.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(classNameId); qPos.add(classPK); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(ddmStructureLink); 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 d d m structure links where classNameId = ? and classPK = ? from the database. * * @param classNameId the class name ID * @param classPK the class p k */ @Override public void removeByC_C(long classNameId, long classPK) { for (DDMStructureLink ddmStructureLink : findByC_C(classNameId, classPK, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(ddmStructureLink); } } /** * Returns the number of d d m structure links where classNameId = ? and classPK = ?. * * @param classNameId the class name ID * @param classPK the class p k * @return the number of matching d d m structure links */ @Override public int countByC_C(long classNameId, long classPK) { FinderPath finderPath = FINDER_PATH_COUNT_BY_C_C; Object[] finderArgs = new Object[] { classNameId, classPK }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(3); query.append(_SQL_COUNT_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_C_C_CLASSNAMEID_2); query.append(_FINDER_COLUMN_C_C_CLASSPK_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(classNameId); qPos.add(classPK); 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_C_CLASSNAMEID_2 = "ddmStructureLink.classNameId = ? AND "; private static final String _FINDER_COLUMN_C_C_CLASSPK_2 = "ddmStructureLink.classPK = ?"; public static final FinderPath FINDER_PATH_FETCH_BY_C_C_S = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, DDMStructureLinkImpl.class, FINDER_CLASS_NAME_ENTITY, "fetchByC_C_S", new String[] { Long.class.getName(), Long.class.getName(), Long.class.getName() }, DDMStructureLinkModelImpl.CLASSNAMEID_COLUMN_BITMASK | DDMStructureLinkModelImpl.CLASSPK_COLUMN_BITMASK | DDMStructureLinkModelImpl.STRUCTUREID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_C_C_S = new FinderPath(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByC_C_S", new String[] { Long.class.getName(), Long.class.getName(), Long.class.getName() }); /** * Returns the d d m structure link where classNameId = ? and classPK = ? and structureId = ? or throws a {@link NoSuchStructureLinkException} if it could not be found. * * @param classNameId the class name ID * @param classPK the class p k * @param structureId the structure ID * @return the matching d d m structure link * @throws NoSuchStructureLinkException if a matching d d m structure link could not be found */ @Override public DDMStructureLink findByC_C_S(long classNameId, long classPK, long structureId) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByC_C_S(classNameId, classPK, structureId); if (ddmStructureLink == null) { StringBundler msg = new StringBundler(8); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("classNameId="); msg.append(classNameId); msg.append(", classPK="); msg.append(classPK); msg.append(", structureId="); msg.append(structureId); msg.append(StringPool.CLOSE_CURLY_BRACE); if (_log.isWarnEnabled()) { _log.warn(msg.toString()); } throw new NoSuchStructureLinkException(msg.toString()); } return ddmStructureLink; } /** * Returns the d d m structure link where classNameId = ? and classPK = ? and structureId = ? or returns null if it could not be found. Uses the finder cache. * * @param classNameId the class name ID * @param classPK the class p k * @param structureId the structure ID * @return the matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByC_C_S(long classNameId, long classPK, long structureId) { return fetchByC_C_S(classNameId, classPK, structureId, true); } /** * Returns the d d m structure link where classNameId = ? and classPK = ? and structureId = ? or returns null if it could not be found, optionally using the finder cache. * * @param classNameId the class name ID * @param classPK the class p k * @param structureId the structure ID * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching d d m structure link, or null if a matching d d m structure link could not be found */ @Override public DDMStructureLink fetchByC_C_S(long classNameId, long classPK, long structureId, boolean retrieveFromCache) { Object[] finderArgs = new Object[] { classNameId, classPK, structureId }; Object result = null; if (retrieveFromCache) { result = finderCache.getResult(FINDER_PATH_FETCH_BY_C_C_S, finderArgs, this); } if (result instanceof DDMStructureLink) { DDMStructureLink ddmStructureLink = (DDMStructureLink)result; if ((classNameId != ddmStructureLink.getClassNameId()) || (classPK != ddmStructureLink.getClassPK()) || (structureId != ddmStructureLink.getStructureId())) { result = null; } } if (result == null) { StringBundler query = new StringBundler(5); query.append(_SQL_SELECT_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_C_C_S_CLASSNAMEID_2); query.append(_FINDER_COLUMN_C_C_S_CLASSPK_2); query.append(_FINDER_COLUMN_C_C_S_STRUCTUREID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(classNameId); qPos.add(classPK); qPos.add(structureId); List list = q.list(); if (list.isEmpty()) { finderCache.putResult(FINDER_PATH_FETCH_BY_C_C_S, finderArgs, list); } else { DDMStructureLink ddmStructureLink = list.get(0); result = ddmStructureLink; cacheResult(ddmStructureLink); if ((ddmStructureLink.getClassNameId() != classNameId) || (ddmStructureLink.getClassPK() != classPK) || (ddmStructureLink.getStructureId() != structureId)) { finderCache.putResult(FINDER_PATH_FETCH_BY_C_C_S, finderArgs, ddmStructureLink); } } } catch (Exception e) { finderCache.removeResult(FINDER_PATH_FETCH_BY_C_C_S, finderArgs); throw processException(e); } finally { closeSession(session); } } if (result instanceof List) { return null; } else { return (DDMStructureLink)result; } } /** * Removes the d d m structure link where classNameId = ? and classPK = ? and structureId = ? from the database. * * @param classNameId the class name ID * @param classPK the class p k * @param structureId the structure ID * @return the d d m structure link that was removed */ @Override public DDMStructureLink removeByC_C_S(long classNameId, long classPK, long structureId) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = findByC_C_S(classNameId, classPK, structureId); return remove(ddmStructureLink); } /** * Returns the number of d d m structure links where classNameId = ? and classPK = ? and structureId = ?. * * @param classNameId the class name ID * @param classPK the class p k * @param structureId the structure ID * @return the number of matching d d m structure links */ @Override public int countByC_C_S(long classNameId, long classPK, long structureId) { FinderPath finderPath = FINDER_PATH_COUNT_BY_C_C_S; Object[] finderArgs = new Object[] { classNameId, classPK, structureId }; Long count = (Long)finderCache.getResult(finderPath, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(4); query.append(_SQL_COUNT_DDMSTRUCTURELINK_WHERE); query.append(_FINDER_COLUMN_C_C_S_CLASSNAMEID_2); query.append(_FINDER_COLUMN_C_C_S_CLASSPK_2); query.append(_FINDER_COLUMN_C_C_S_STRUCTUREID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(classNameId); qPos.add(classPK); qPos.add(structureId); 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_C_S_CLASSNAMEID_2 = "ddmStructureLink.classNameId = ? AND "; private static final String _FINDER_COLUMN_C_C_S_CLASSPK_2 = "ddmStructureLink.classPK = ? AND "; private static final String _FINDER_COLUMN_C_C_S_STRUCTUREID_2 = "ddmStructureLink.structureId = ?"; public DDMStructureLinkPersistenceImpl() { setModelClass(DDMStructureLink.class); } /** * Caches the d d m structure link in the entity cache if it is enabled. * * @param ddmStructureLink the d d m structure link */ @Override public void cacheResult(DDMStructureLink ddmStructureLink) { entityCache.putResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, ddmStructureLink.getPrimaryKey(), ddmStructureLink); finderCache.putResult(FINDER_PATH_FETCH_BY_C_C_S, new Object[] { ddmStructureLink.getClassNameId(), ddmStructureLink.getClassPK(), ddmStructureLink.getStructureId() }, ddmStructureLink); ddmStructureLink.resetOriginalValues(); } /** * Caches the d d m structure links in the entity cache if it is enabled. * * @param ddmStructureLinks the d d m structure links */ @Override public void cacheResult(List ddmStructureLinks) { for (DDMStructureLink ddmStructureLink : ddmStructureLinks) { if (entityCache.getResult( DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, ddmStructureLink.getPrimaryKey()) == null) { cacheResult(ddmStructureLink); } else { ddmStructureLink.resetOriginalValues(); } } } /** * Clears the cache for all d d m structure links. * *

* The {@link EntityCache} and {@link FinderCache} are both cleared by this method. *

*/ @Override public void clearCache() { entityCache.clearCache(DDMStructureLinkImpl.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 d d m structure link. * *

* The {@link EntityCache} and {@link FinderCache} are both cleared by this method. *

*/ @Override public void clearCache(DDMStructureLink ddmStructureLink) { entityCache.removeResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, ddmStructureLink.getPrimaryKey()); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); clearUniqueFindersCache((DDMStructureLinkModelImpl)ddmStructureLink); } @Override public void clearCache(List ddmStructureLinks) { finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); for (DDMStructureLink ddmStructureLink : ddmStructureLinks) { entityCache.removeResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, ddmStructureLink.getPrimaryKey()); clearUniqueFindersCache((DDMStructureLinkModelImpl)ddmStructureLink); } } protected void cacheUniqueFindersCache( DDMStructureLinkModelImpl ddmStructureLinkModelImpl, boolean isNew) { if (isNew) { Object[] args = new Object[] { ddmStructureLinkModelImpl.getClassNameId(), ddmStructureLinkModelImpl.getClassPK(), ddmStructureLinkModelImpl.getStructureId() }; finderCache.putResult(FINDER_PATH_COUNT_BY_C_C_S, args, Long.valueOf(1)); finderCache.putResult(FINDER_PATH_FETCH_BY_C_C_S, args, ddmStructureLinkModelImpl); } else { if ((ddmStructureLinkModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_C_C_S.getColumnBitmask()) != 0) { Object[] args = new Object[] { ddmStructureLinkModelImpl.getClassNameId(), ddmStructureLinkModelImpl.getClassPK(), ddmStructureLinkModelImpl.getStructureId() }; finderCache.putResult(FINDER_PATH_COUNT_BY_C_C_S, args, Long.valueOf(1)); finderCache.putResult(FINDER_PATH_FETCH_BY_C_C_S, args, ddmStructureLinkModelImpl); } } } protected void clearUniqueFindersCache( DDMStructureLinkModelImpl ddmStructureLinkModelImpl) { Object[] args = new Object[] { ddmStructureLinkModelImpl.getClassNameId(), ddmStructureLinkModelImpl.getClassPK(), ddmStructureLinkModelImpl.getStructureId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_C_C_S, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_C_C_S, args); if ((ddmStructureLinkModelImpl.getColumnBitmask() & FINDER_PATH_FETCH_BY_C_C_S.getColumnBitmask()) != 0) { args = new Object[] { ddmStructureLinkModelImpl.getOriginalClassNameId(), ddmStructureLinkModelImpl.getOriginalClassPK(), ddmStructureLinkModelImpl.getOriginalStructureId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_C_C_S, args); finderCache.removeResult(FINDER_PATH_FETCH_BY_C_C_S, args); } } /** * Creates a new d d m structure link with the primary key. Does not add the d d m structure link to the database. * * @param structureLinkId the primary key for the new d d m structure link * @return the new d d m structure link */ @Override public DDMStructureLink create(long structureLinkId) { DDMStructureLink ddmStructureLink = new DDMStructureLinkImpl(); ddmStructureLink.setNew(true); ddmStructureLink.setPrimaryKey(structureLinkId); ddmStructureLink.setCompanyId(companyProvider.getCompanyId()); return ddmStructureLink; } /** * Removes the d d m structure link with the primary key from the database. Also notifies the appropriate model listeners. * * @param structureLinkId the primary key of the d d m structure link * @return the d d m structure link that was removed * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink remove(long structureLinkId) throws NoSuchStructureLinkException { return remove((Serializable)structureLinkId); } /** * Removes the d d m structure link with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the d d m structure link * @return the d d m structure link that was removed * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink remove(Serializable primaryKey) throws NoSuchStructureLinkException { Session session = null; try { session = openSession(); DDMStructureLink ddmStructureLink = (DDMStructureLink)session.get(DDMStructureLinkImpl.class, primaryKey); if (ddmStructureLink == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchStructureLinkException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(ddmStructureLink); } catch (NoSuchStructureLinkException nsee) { throw nsee; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } @Override protected DDMStructureLink removeImpl(DDMStructureLink ddmStructureLink) { ddmStructureLink = toUnwrappedModel(ddmStructureLink); Session session = null; try { session = openSession(); if (!session.contains(ddmStructureLink)) { ddmStructureLink = (DDMStructureLink)session.get(DDMStructureLinkImpl.class, ddmStructureLink.getPrimaryKeyObj()); } if (ddmStructureLink != null) { session.delete(ddmStructureLink); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } if (ddmStructureLink != null) { clearCache(ddmStructureLink); } return ddmStructureLink; } @Override public DDMStructureLink updateImpl(DDMStructureLink ddmStructureLink) { ddmStructureLink = toUnwrappedModel(ddmStructureLink); boolean isNew = ddmStructureLink.isNew(); DDMStructureLinkModelImpl ddmStructureLinkModelImpl = (DDMStructureLinkModelImpl)ddmStructureLink; Session session = null; try { session = openSession(); if (ddmStructureLink.isNew()) { session.save(ddmStructureLink); ddmStructureLink.setNew(false); } else { ddmStructureLink = (DDMStructureLink)session.merge(ddmStructureLink); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); if (isNew || !DDMStructureLinkModelImpl.COLUMN_BITMASK_ENABLED) { finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } else { if ((ddmStructureLinkModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CLASSNAMEID.getColumnBitmask()) != 0) { Object[] args = new Object[] { ddmStructureLinkModelImpl.getOriginalClassNameId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_CLASSNAMEID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CLASSNAMEID, args); args = new Object[] { ddmStructureLinkModelImpl.getClassNameId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_CLASSNAMEID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_CLASSNAMEID, args); } if ((ddmStructureLinkModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_STRUCTUREID.getColumnBitmask()) != 0) { Object[] args = new Object[] { ddmStructureLinkModelImpl.getOriginalStructureId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_STRUCTUREID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_STRUCTUREID, args); args = new Object[] { ddmStructureLinkModelImpl.getStructureId() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_STRUCTUREID, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_STRUCTUREID, args); } if ((ddmStructureLinkModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_C_C.getColumnBitmask()) != 0) { Object[] args = new Object[] { ddmStructureLinkModelImpl.getOriginalClassNameId(), ddmStructureLinkModelImpl.getOriginalClassPK() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_C_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_C_C, args); args = new Object[] { ddmStructureLinkModelImpl.getClassNameId(), ddmStructureLinkModelImpl.getClassPK() }; finderCache.removeResult(FINDER_PATH_COUNT_BY_C_C, args); finderCache.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_C_C, args); } } entityCache.putResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, ddmStructureLink.getPrimaryKey(), ddmStructureLink, false); clearUniqueFindersCache(ddmStructureLinkModelImpl); cacheUniqueFindersCache(ddmStructureLinkModelImpl, isNew); ddmStructureLink.resetOriginalValues(); return ddmStructureLink; } protected DDMStructureLink toUnwrappedModel( DDMStructureLink ddmStructureLink) { if (ddmStructureLink instanceof DDMStructureLinkImpl) { return ddmStructureLink; } DDMStructureLinkImpl ddmStructureLinkImpl = new DDMStructureLinkImpl(); ddmStructureLinkImpl.setNew(ddmStructureLink.isNew()); ddmStructureLinkImpl.setPrimaryKey(ddmStructureLink.getPrimaryKey()); ddmStructureLinkImpl.setStructureLinkId(ddmStructureLink.getStructureLinkId()); ddmStructureLinkImpl.setCompanyId(ddmStructureLink.getCompanyId()); ddmStructureLinkImpl.setClassNameId(ddmStructureLink.getClassNameId()); ddmStructureLinkImpl.setClassPK(ddmStructureLink.getClassPK()); ddmStructureLinkImpl.setStructureId(ddmStructureLink.getStructureId()); return ddmStructureLinkImpl; } /** * Returns the d d m structure link 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 d d m structure link * @return the d d m structure link * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink findByPrimaryKey(Serializable primaryKey) throws NoSuchStructureLinkException { DDMStructureLink ddmStructureLink = fetchByPrimaryKey(primaryKey); if (ddmStructureLink == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchStructureLinkException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return ddmStructureLink; } /** * Returns the d d m structure link with the primary key or throws a {@link NoSuchStructureLinkException} if it could not be found. * * @param structureLinkId the primary key of the d d m structure link * @return the d d m structure link * @throws NoSuchStructureLinkException if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink findByPrimaryKey(long structureLinkId) throws NoSuchStructureLinkException { return findByPrimaryKey((Serializable)structureLinkId); } /** * Returns the d d m structure link with the primary key or returns null if it could not be found. * * @param primaryKey the primary key of the d d m structure link * @return the d d m structure link, or null if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink fetchByPrimaryKey(Serializable primaryKey) { DDMStructureLink ddmStructureLink = (DDMStructureLink)entityCache.getResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, primaryKey); if (ddmStructureLink == _nullDDMStructureLink) { return null; } if (ddmStructureLink == null) { Session session = null; try { session = openSession(); ddmStructureLink = (DDMStructureLink)session.get(DDMStructureLinkImpl.class, primaryKey); if (ddmStructureLink != null) { cacheResult(ddmStructureLink); } else { entityCache.putResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, primaryKey, _nullDDMStructureLink); } } catch (Exception e) { entityCache.removeResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, primaryKey); throw processException(e); } finally { closeSession(session); } } return ddmStructureLink; } /** * Returns the d d m structure link with the primary key or returns null if it could not be found. * * @param structureLinkId the primary key of the d d m structure link * @return the d d m structure link, or null if a d d m structure link with the primary key could not be found */ @Override public DDMStructureLink fetchByPrimaryKey(long structureLinkId) { return fetchByPrimaryKey((Serializable)structureLinkId); } @Override public Map fetchByPrimaryKeys( Set primaryKeys) { if (primaryKeys.isEmpty()) { return Collections.emptyMap(); } Map map = new HashMap(); if (primaryKeys.size() == 1) { Iterator iterator = primaryKeys.iterator(); Serializable primaryKey = iterator.next(); DDMStructureLink ddmStructureLink = fetchByPrimaryKey(primaryKey); if (ddmStructureLink != null) { map.put(primaryKey, ddmStructureLink); } return map; } Set uncachedPrimaryKeys = null; for (Serializable primaryKey : primaryKeys) { DDMStructureLink ddmStructureLink = (DDMStructureLink)entityCache.getResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, primaryKey); if (ddmStructureLink == null) { if (uncachedPrimaryKeys == null) { uncachedPrimaryKeys = new HashSet(); } uncachedPrimaryKeys.add(primaryKey); } else { map.put(primaryKey, ddmStructureLink); } } if (uncachedPrimaryKeys == null) { return map; } StringBundler query = new StringBundler((uncachedPrimaryKeys.size() * 2) + 1); query.append(_SQL_SELECT_DDMSTRUCTURELINK_WHERE_PKS_IN); for (Serializable primaryKey : uncachedPrimaryKeys) { query.append(String.valueOf(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 (DDMStructureLink ddmStructureLink : (List)q.list()) { map.put(ddmStructureLink.getPrimaryKeyObj(), ddmStructureLink); cacheResult(ddmStructureLink); uncachedPrimaryKeys.remove(ddmStructureLink.getPrimaryKeyObj()); } for (Serializable primaryKey : uncachedPrimaryKeys) { entityCache.putResult(DDMStructureLinkModelImpl.ENTITY_CACHE_ENABLED, DDMStructureLinkImpl.class, primaryKey, _nullDDMStructureLink); } } catch (Exception e) { throw processException(e); } finally { closeSession(session); } return map; } /** * Returns all the d d m structure links. * * @return the d d m structure links */ @Override public List findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the d d m structure links. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @return the range of d d m structure links */ @Override public List findAll(int start, int end) { return findAll(start, end, null); } /** * Returns an ordered range of all the d d m structure links. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of d d m structure links */ @Override public List findAll(int start, int end, OrderByComparator orderByComparator) { return findAll(start, end, orderByComparator, true); } /** * Returns an ordered range of all the d d m structure links. * *

* 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 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 QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureLinkModelImpl}. 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 d d m structure links * @param end the upper bound of the range of d d m structure links (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of d d m structure links */ @Override public List findAll(int start, int end, OrderByComparator 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 list = null; if (retrieveFromCache) { list = (List)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_DDMSTRUCTURELINK); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_DDMSTRUCTURELINK; if (pagination) { sql = sql.concat(DDMStructureLinkModelImpl.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 = Collections.unmodifiableList(list); } else { list = (List)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 d d m structure links from the database. * */ @Override public void removeAll() { for (DDMStructureLink ddmStructureLink : findAll()) { remove(ddmStructureLink); } } /** * Returns the number of d d m structure links. * * @return the number of d d m structure links */ @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_DDMSTRUCTURELINK); count = (Long)q.uniqueResult(); finderCache.putResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, count); } catch (Exception e) { finderCache.removeResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY); throw processException(e); } finally { closeSession(session); } } return count.intValue(); } @Override protected Map getTableColumnsMap() { return DDMStructureLinkModelImpl.TABLE_COLUMNS_MAP; } /** * Initializes the d d m structure link persistence. */ public void afterPropertiesSet() { } public void destroy() { entityCache.removeCache(DDMStructureLinkImpl.class.getName()); finderCache.removeCache(FINDER_CLASS_NAME_ENTITY); finderCache.removeCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); finderCache.removeCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @ServiceReference(type = CompanyProviderWrapper.class) protected CompanyProvider companyProvider; @ServiceReference(type = EntityCache.class) protected EntityCache entityCache; @ServiceReference(type = FinderCache.class) protected FinderCache finderCache; private static final String _SQL_SELECT_DDMSTRUCTURELINK = "SELECT ddmStructureLink FROM DDMStructureLink ddmStructureLink"; private static final String _SQL_SELECT_DDMSTRUCTURELINK_WHERE_PKS_IN = "SELECT ddmStructureLink FROM DDMStructureLink ddmStructureLink WHERE structureLinkId IN ("; private static final String _SQL_SELECT_DDMSTRUCTURELINK_WHERE = "SELECT ddmStructureLink FROM DDMStructureLink ddmStructureLink WHERE "; private static final String _SQL_COUNT_DDMSTRUCTURELINK = "SELECT COUNT(ddmStructureLink) FROM DDMStructureLink ddmStructureLink"; private static final String _SQL_COUNT_DDMSTRUCTURELINK_WHERE = "SELECT COUNT(ddmStructureLink) FROM DDMStructureLink ddmStructureLink WHERE "; private static final String _ORDER_BY_ENTITY_ALIAS = "ddmStructureLink."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No DDMStructureLink exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No DDMStructureLink exists with the key {"; private static final Log _log = LogFactoryUtil.getLog(DDMStructureLinkPersistenceImpl.class); private static final DDMStructureLink _nullDDMStructureLink = new DDMStructureLinkImpl() { @Override public Object clone() { return this; } @Override public CacheModel toCacheModel() { return _nullDDMStructureLinkCacheModel; } }; private static final CacheModel _nullDDMStructureLinkCacheModel = new CacheModel() { @Override public DDMStructureLink toEntityModel() { return _nullDDMStructureLink; } }; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy