/** * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.ese.ils.beta.service.persistence; import com.ese.ils.beta.NoSuchUserInfoException; import com.ese.ils.beta.model.UserInfo; import com.ese.ils.beta.model.impl.UserInfoImpl; import com.ese.ils.beta.model.impl.UserInfoModelImpl; import com.liferay.portal.NoSuchModelException; import com.liferay.portal.kernel.bean.BeanReference; import com.liferay.portal.kernel.cache.CacheRegistryUtil; import com.liferay.portal.kernel.dao.orm.EntityCacheUtil; import com.liferay.portal.kernel.dao.orm.FinderCacheUtil; import com.liferay.portal.kernel.dao.orm.FinderPath; import com.liferay.portal.kernel.dao.orm.Query; import com.liferay.portal.kernel.dao.orm.QueryPos; import com.liferay.portal.kernel.dao.orm.QueryUtil; import com.liferay.portal.kernel.dao.orm.Session; import com.liferay.portal.kernel.exception.SystemException; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.util.GetterUtil; import com.liferay.portal.kernel.util.InstanceFactory; import com.liferay.portal.kernel.util.OrderByComparator; import com.liferay.portal.kernel.util.PropsKeys; import com.liferay.portal.kernel.util.PropsUtil; import com.liferay.portal.kernel.util.StringBundler; import com.liferay.portal.kernel.util.StringPool; import com.liferay.portal.kernel.util.StringUtil; import com.liferay.portal.model.CacheModel; import com.liferay.portal.model.ModelListener; import com.liferay.portal.service.persistence.BatchSessionUtil; import com.liferay.portal.service.persistence.ResourcePersistence; import com.liferay.portal.service.persistence.UserPersistence; import com.liferay.portal.service.persistence.impl.BasePersistenceImpl; import java.io.Serializable; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * The persistence implementation for the user info service. * * <p> * Caching information and settings can be found in <code>portal.properties</code> * </p> * * @author edik * @see UserInfoPersistence * @see UserInfoUtil * @generated */ public class UserInfoPersistenceImpl extends BasePersistenceImpl<UserInfo> implements UserInfoPersistence { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this class directly. Always use {@link UserInfoUtil} to access the user info persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class. */ public static final String FINDER_CLASS_NAME_ENTITY = UserInfoImpl.class.getName(); public static final String FINDER_CLASS_NAME_LIST_WITH_PAGINATION = FINDER_CLASS_NAME_ENTITY + ".List1"; public static final String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION = FINDER_CLASS_NAME_ENTITY + ".List2"; public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_BYUSER = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByByUser", new String[] { Long.class.getName(), "java.lang.Integer", "java.lang.Integer", "com.liferay.portal.kernel.util.OrderByComparator" }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYUSER = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByByUser", new String[] { Long.class.getName() }, UserInfoModelImpl.USERID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_BYUSER = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByByUser", new String[] { Long.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_BYCOMPANY = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByByCompany", new String[] { Long.class.getName(), "java.lang.Integer", "java.lang.Integer", "com.liferay.portal.kernel.util.OrderByComparator" }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYCOMPANY = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByByCompany", new String[] { Long.class.getName() }, UserInfoModelImpl.COMPANYID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_BYCOMPANY = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByByCompany", new String[] { Long.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_BY_MODULE = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findByModule", new String[] { Long.class.getName(), "java.lang.Integer", "java.lang.Integer", "com.liferay.portal.kernel.util.OrderByComparator" }); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_MODULE = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findByModule", new String[] { Long.class.getName() }, UserInfoModelImpl.MODULEID_COLUMN_BITMASK); public static final FinderPath FINDER_PATH_COUNT_BY_MODULE = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countByModule", new String[] { Long.class.getName() }); public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, UserInfoImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]); public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoModelImpl.FINDER_CACHE_ENABLED, Long.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "countAll", new String[0]); /** * Caches the user info in the entity cache if it is enabled. * * @param userInfo the user info */ public void cacheResult(UserInfo userInfo) { EntityCacheUtil.putResult(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfo.getPrimaryKey(), userInfo); userInfo.resetOriginalValues(); } /** * Caches the user infos in the entity cache if it is enabled. * * @param userInfos the user infos */ public void cacheResult(List<UserInfo> userInfos) { for (UserInfo userInfo : userInfos) { if (EntityCacheUtil.getResult( UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfo.getPrimaryKey()) == null) { cacheResult(userInfo); } else { userInfo.resetOriginalValues(); } } } /** * Clears the cache for all user infos. * * <p> * The {@link com.liferay.portal.kernel.dao.orm.EntityCache} and {@link com.liferay.portal.kernel.dao.orm.FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache() { if (_HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE) { CacheRegistryUtil.clear(UserInfoImpl.class.getName()); } EntityCacheUtil.clearCache(UserInfoImpl.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 user info. * * <p> * The {@link com.liferay.portal.kernel.dao.orm.EntityCache} and {@link com.liferay.portal.kernel.dao.orm.FinderCache} are both cleared by this method. * </p> */ @Override public void clearCache(UserInfo userInfo) { EntityCacheUtil.removeResult(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfo.getPrimaryKey()); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @Override public void clearCache(List<UserInfo> userInfos) { FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); for (UserInfo userInfo : userInfos) { EntityCacheUtil.removeResult(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfo.getPrimaryKey()); } } /** * Creates a new user info with the primary key. Does not add the user info to the database. * * @param userInfoId the primary key for the new user info * @return the new user info */ public UserInfo create(long userInfoId) { UserInfo userInfo = new UserInfoImpl(); userInfo.setNew(true); userInfo.setPrimaryKey(userInfoId); return userInfo; } /** * Removes the user info with the primary key from the database. Also notifies the appropriate model listeners. * * @param userInfoId the primary key of the user info * @return the user info that was removed * @throws com.ese.ils.beta.NoSuchUserInfoException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ public UserInfo remove(long userInfoId) throws NoSuchUserInfoException, SystemException { return remove(Long.valueOf(userInfoId)); } /** * Removes the user info with the primary key from the database. Also notifies the appropriate model listeners. * * @param primaryKey the primary key of the user info * @return the user info that was removed * @throws com.ese.ils.beta.NoSuchUserInfoException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public UserInfo remove(Serializable primaryKey) throws NoSuchUserInfoException, SystemException { Session session = null; try { session = openSession(); UserInfo userInfo = (UserInfo)session.get(UserInfoImpl.class, primaryKey); if (userInfo == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } throw new NoSuchUserInfoException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey); } return remove(userInfo); } catch (NoSuchUserInfoException nsee) { throw nsee; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } @Override protected UserInfo removeImpl(UserInfo userInfo) throws SystemException { userInfo = toUnwrappedModel(userInfo); Session session = null; try { session = openSession(); BatchSessionUtil.delete(session, userInfo); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } clearCache(userInfo); return userInfo; } @Override public UserInfo updateImpl(com.ese.ils.beta.model.UserInfo userInfo, boolean merge) throws SystemException { userInfo = toUnwrappedModel(userInfo); boolean isNew = userInfo.isNew(); UserInfoModelImpl userInfoModelImpl = (UserInfoModelImpl)userInfo; Session session = null; try { session = openSession(); BatchSessionUtil.update(session, userInfo, merge); userInfo.setNew(false); } catch (Exception e) { throw processException(e); } finally { closeSession(session); } FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION); if (isNew || !UserInfoModelImpl.COLUMN_BITMASK_ENABLED) { FinderCacheUtil.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } else { if ((userInfoModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYUSER.getColumnBitmask()) != 0) { Object[] args = new Object[] { Long.valueOf(userInfoModelImpl.getOriginalUserId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_BYUSER, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYUSER, args); args = new Object[] { Long.valueOf(userInfoModelImpl.getUserId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_BYUSER, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYUSER, args); } if ((userInfoModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYCOMPANY.getColumnBitmask()) != 0) { Object[] args = new Object[] { Long.valueOf(userInfoModelImpl.getOriginalCompanyId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_BYCOMPANY, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYCOMPANY, args); args = new Object[] { Long.valueOf(userInfoModelImpl.getCompanyId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_BYCOMPANY, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYCOMPANY, args); } if ((userInfoModelImpl.getColumnBitmask() & FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_MODULE.getColumnBitmask()) != 0) { Object[] args = new Object[] { Long.valueOf(userInfoModelImpl.getOriginalModuleId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_MODULE, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_MODULE, args); args = new Object[] { Long.valueOf(userInfoModelImpl.getModuleId()) }; FinderCacheUtil.removeResult(FINDER_PATH_COUNT_BY_MODULE, args); FinderCacheUtil.removeResult(FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_MODULE, args); } } EntityCacheUtil.putResult(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfo.getPrimaryKey(), userInfo); return userInfo; } protected UserInfo toUnwrappedModel(UserInfo userInfo) { if (userInfo instanceof UserInfoImpl) { return userInfo; } UserInfoImpl userInfoImpl = new UserInfoImpl(); userInfoImpl.setNew(userInfo.isNew()); userInfoImpl.setPrimaryKey(userInfo.getPrimaryKey()); userInfoImpl.setUserInfoId(userInfo.getUserInfoId()); userInfoImpl.setCompanyId(userInfo.getCompanyId()); userInfoImpl.setUserId(userInfo.getUserId()); userInfoImpl.setModuleId(userInfo.getModuleId()); return userInfoImpl; } /** * Returns the user info 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 user info * @return the user info * @throws com.liferay.portal.NoSuchModelException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public UserInfo findByPrimaryKey(Serializable primaryKey) throws NoSuchModelException, SystemException { return findByPrimaryKey(((Long)primaryKey).longValue()); } /** * Returns the user info with the primary key or throws a {@link com.ese.ils.beta.NoSuchUserInfoException} if it could not be found. * * @param userInfoId the primary key of the user info * @return the user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByPrimaryKey(long userInfoId) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByPrimaryKey(userInfoId); if (userInfo == null) { if (_log.isWarnEnabled()) { _log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + userInfoId); } throw new NoSuchUserInfoException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + userInfoId); } return userInfo; } /** * Returns the user info with the primary key or returns <code>null</code> if it could not be found. * * @param primaryKey the primary key of the user info * @return the user info, or <code>null</code> if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ @Override public UserInfo fetchByPrimaryKey(Serializable primaryKey) throws SystemException { return fetchByPrimaryKey(((Long)primaryKey).longValue()); } /** * Returns the user info with the primary key or returns <code>null</code> if it could not be found. * * @param userInfoId the primary key of the user info * @return the user info, or <code>null</code> if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByPrimaryKey(long userInfoId) throws SystemException { UserInfo userInfo = (UserInfo)EntityCacheUtil.getResult(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfoId); if (userInfo == _nullUserInfo) { return null; } if (userInfo == null) { Session session = null; boolean hasException = false; try { session = openSession(); userInfo = (UserInfo)session.get(UserInfoImpl.class, Long.valueOf(userInfoId)); } catch (Exception e) { hasException = true; throw processException(e); } finally { if (userInfo != null) { cacheResult(userInfo); } else if (!hasException) { EntityCacheUtil.putResult(UserInfoModelImpl.ENTITY_CACHE_ENABLED, UserInfoImpl.class, userInfoId, _nullUserInfo); } closeSession(session); } } return userInfo; } /** * Returns all the user infos where userId = ?. * * @param userId the user ID * @return the matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByByUser(long userId) throws SystemException { return findByByUser(userId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the user infos where userId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param userId the user ID * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @return the range of matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByByUser(long userId, int start, int end) throws SystemException { return findByByUser(userId, start, end, null); } /** * Returns an ordered range of all the user infos where userId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param userId the user ID * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByByUser(long userId, int start, int end, OrderByComparator orderByComparator) throws SystemException { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYUSER; finderArgs = new Object[] { userId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_BYUSER; finderArgs = new Object[] { userId, start, end, orderByComparator }; } List<UserInfo> list = (List<UserInfo>)FinderCacheUtil.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (UserInfo userInfo : list) { if ((userId != userInfo.getUserId())) { 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_USERINFO_WHERE); query.append(_FINDER_COLUMN_BYUSER_USERID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { query.append(UserInfoModelImpl.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(userId); list = (List<UserInfo>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { if (list == null) { FinderCacheUtil.removeResult(finderPath, finderArgs); } else { cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } closeSession(session); } } return list; } /** * Returns the first user info in the ordered set where userId = ?. * * @param userId the user ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByByUser_First(long userId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByByUser_First(userId, orderByComparator); if (userInfo != null) { return userInfo; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("userId="); msg.append(userId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchUserInfoException(msg.toString()); } /** * Returns the first user info in the ordered set where userId = ?. * * @param userId the user ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching user info, or <code>null</code> if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByByUser_First(long userId, OrderByComparator orderByComparator) throws SystemException { List<UserInfo> list = findByByUser(userId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last user info in the ordered set where userId = ?. * * @param userId the user ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByByUser_Last(long userId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByByUser_Last(userId, orderByComparator); if (userInfo != null) { return userInfo; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("userId="); msg.append(userId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchUserInfoException(msg.toString()); } /** * Returns the last user info in the ordered set where userId = ?. * * @param userId the user ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching user info, or <code>null</code> if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByByUser_Last(long userId, OrderByComparator orderByComparator) throws SystemException { int count = countByByUser(userId); List<UserInfo> list = findByByUser(userId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the user infos before and after the current user info in the ordered set where userId = ?. * * @param userInfoId the primary key of the current user info * @param userId the user ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ public UserInfo[] findByByUser_PrevAndNext(long userInfoId, long userId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = findByPrimaryKey(userInfoId); Session session = null; try { session = openSession(); UserInfo[] array = new UserInfoImpl[3]; array[0] = getByByUser_PrevAndNext(session, userInfo, userId, orderByComparator, true); array[1] = userInfo; array[2] = getByByUser_PrevAndNext(session, userInfo, userId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected UserInfo getByByUser_PrevAndNext(Session session, UserInfo userInfo, long userId, 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_USERINFO_WHERE); query.append(_FINDER_COLUMN_BYUSER_USERID_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(UserInfoModelImpl.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(userId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(userInfo); for (Object value : values) { qPos.add(value); } } List<UserInfo> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the user infos where companyId = ?. * * @param companyId the company ID * @return the matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByByCompany(long companyId) throws SystemException { return findByByCompany(companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the user infos where companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param companyId the company ID * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @return the range of matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByByCompany(long companyId, int start, int end) throws SystemException { return findByByCompany(companyId, start, end, null); } /** * Returns an ordered range of all the user infos where companyId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param companyId the company ID * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByByCompany(long companyId, int start, int end, OrderByComparator orderByComparator) throws SystemException { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_BYCOMPANY; finderArgs = new Object[] { companyId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_BYCOMPANY; finderArgs = new Object[] { companyId, start, end, orderByComparator }; } List<UserInfo> list = (List<UserInfo>)FinderCacheUtil.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (UserInfo userInfo : list) { if ((companyId != userInfo.getCompanyId())) { 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_USERINFO_WHERE); query.append(_FINDER_COLUMN_BYCOMPANY_COMPANYID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { query.append(UserInfoModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(companyId); list = (List<UserInfo>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { if (list == null) { FinderCacheUtil.removeResult(finderPath, finderArgs); } else { cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } closeSession(session); } } return list; } /** * Returns the first user info in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByByCompany_First(long companyId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByByCompany_First(companyId, orderByComparator); if (userInfo != null) { return userInfo; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("companyId="); msg.append(companyId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchUserInfoException(msg.toString()); } /** * Returns the first user info in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching user info, or <code>null</code> if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByByCompany_First(long companyId, OrderByComparator orderByComparator) throws SystemException { List<UserInfo> list = findByByCompany(companyId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last user info in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByByCompany_Last(long companyId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByByCompany_Last(companyId, orderByComparator); if (userInfo != null) { return userInfo; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("companyId="); msg.append(companyId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchUserInfoException(msg.toString()); } /** * Returns the last user info in the ordered set where companyId = ?. * * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching user info, or <code>null</code> if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByByCompany_Last(long companyId, OrderByComparator orderByComparator) throws SystemException { int count = countByByCompany(companyId); List<UserInfo> list = findByByCompany(companyId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the user infos before and after the current user info in the ordered set where companyId = ?. * * @param userInfoId the primary key of the current user info * @param companyId the company ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ public UserInfo[] findByByCompany_PrevAndNext(long userInfoId, long companyId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = findByPrimaryKey(userInfoId); Session session = null; try { session = openSession(); UserInfo[] array = new UserInfoImpl[3]; array[0] = getByByCompany_PrevAndNext(session, userInfo, companyId, orderByComparator, true); array[1] = userInfo; array[2] = getByByCompany_PrevAndNext(session, userInfo, companyId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected UserInfo getByByCompany_PrevAndNext(Session session, UserInfo userInfo, long companyId, 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_USERINFO_WHERE); query.append(_FINDER_COLUMN_BYCOMPANY_COMPANYID_2); if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { query.append(_ORDER_BY_ENTITY_ALIAS); query.append(orderByConditionFields[i]); if ((i + 1) < orderByConditionFields.length) { if (orderByComparator.isAscending() ^ previous) { query.append(WHERE_GREATER_THAN_HAS_NEXT); } else { query.append(WHERE_LESSER_THAN_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { query.append(WHERE_GREATER_THAN); } else { query.append(WHERE_LESSER_THAN); } } } query.append(ORDER_BY_CLAUSE); String[] orderByFields = orderByComparator.getOrderByFields(); for (int i = 0; i < orderByFields.length; i++) { query.append(_ORDER_BY_ENTITY_ALIAS); query.append(orderByFields[i]); if ((i + 1) < orderByFields.length) { if (orderByComparator.isAscending() ^ previous) { query.append(ORDER_BY_ASC_HAS_NEXT); } else { query.append(ORDER_BY_DESC_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { query.append(ORDER_BY_ASC); } else { query.append(ORDER_BY_DESC); } } } } else { query.append(UserInfoModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Query q = session.createQuery(sql); q.setFirstResult(0); q.setMaxResults(2); QueryPos qPos = QueryPos.getInstance(q); qPos.add(companyId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(userInfo); for (Object value : values) { qPos.add(value); } } List<UserInfo> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the user infos where moduleId = ?. * * @param moduleId the module ID * @return the matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByModule(long moduleId) throws SystemException { return findByModule(moduleId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the user infos where moduleId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param moduleId the module ID * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @return the range of matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByModule(long moduleId, int start, int end) throws SystemException { return findByModule(moduleId, start, end, null); } /** * Returns an ordered range of all the user infos where moduleId = ?. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param moduleId the module ID * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of matching user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findByModule(long moduleId, int start, int end, OrderByComparator orderByComparator) throws SystemException { FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_MODULE; finderArgs = new Object[] { moduleId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_MODULE; finderArgs = new Object[] { moduleId, start, end, orderByComparator }; } List<UserInfo> list = (List<UserInfo>)FinderCacheUtil.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (UserInfo userInfo : list) { if ((moduleId != userInfo.getModuleId())) { list = null; break; } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 3)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_USERINFO_WHERE); query.append(_FINDER_COLUMN_MODULE_MODULEID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else { query.append(UserInfoModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(moduleId); list = (List<UserInfo>)QueryUtil.list(q, getDialect(), start, end); } catch (Exception e) { throw processException(e); } finally { if (list == null) { FinderCacheUtil.removeResult(finderPath, finderArgs); } else { cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } closeSession(session); } } return list; } /** * Returns the first user info in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByModule_First(long moduleId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByModule_First(moduleId, orderByComparator); if (userInfo != null) { return userInfo; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("moduleId="); msg.append(moduleId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchUserInfoException(msg.toString()); } /** * Returns the first user info in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the first matching user info, or <code>null</code> if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByModule_First(long moduleId, OrderByComparator orderByComparator) throws SystemException { List<UserInfo> list = findByModule(moduleId, 0, 1, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the last user info in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo findByModule_Last(long moduleId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = fetchByModule_Last(moduleId, orderByComparator); if (userInfo != null) { return userInfo; } StringBundler msg = new StringBundler(4); msg.append(_NO_SUCH_ENTITY_WITH_KEY); msg.append("moduleId="); msg.append(moduleId); msg.append(StringPool.CLOSE_CURLY_BRACE); throw new NoSuchUserInfoException(msg.toString()); } /** * Returns the last user info in the ordered set where moduleId = ?. * * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the last matching user info, or <code>null</code> if a matching user info could not be found * @throws SystemException if a system exception occurred */ public UserInfo fetchByModule_Last(long moduleId, OrderByComparator orderByComparator) throws SystemException { int count = countByModule(moduleId); List<UserInfo> list = findByModule(moduleId, count - 1, count, orderByComparator); if (!list.isEmpty()) { return list.get(0); } return null; } /** * Returns the user infos before and after the current user info in the ordered set where moduleId = ?. * * @param userInfoId the primary key of the current user info * @param moduleId the module ID * @param orderByComparator the comparator to order the set by (optionally <code>null</code>) * @return the previous, current, and next user info * @throws com.ese.ils.beta.NoSuchUserInfoException if a user info with the primary key could not be found * @throws SystemException if a system exception occurred */ public UserInfo[] findByModule_PrevAndNext(long userInfoId, long moduleId, OrderByComparator orderByComparator) throws NoSuchUserInfoException, SystemException { UserInfo userInfo = findByPrimaryKey(userInfoId); Session session = null; try { session = openSession(); UserInfo[] array = new UserInfoImpl[3]; array[0] = getByModule_PrevAndNext(session, userInfo, moduleId, orderByComparator, true); array[1] = userInfo; array[2] = getByModule_PrevAndNext(session, userInfo, moduleId, orderByComparator, false); return array; } catch (Exception e) { throw processException(e); } finally { closeSession(session); } } protected UserInfo getByModule_PrevAndNext(Session session, UserInfo userInfo, long moduleId, OrderByComparator orderByComparator, boolean previous) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 6)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_USERINFO_WHERE); query.append(_FINDER_COLUMN_MODULE_MODULEID_2); if (orderByComparator != null) { String[] orderByConditionFields = orderByComparator.getOrderByConditionFields(); if (orderByConditionFields.length > 0) { query.append(WHERE_AND); } for (int i = 0; i < orderByConditionFields.length; i++) { query.append(_ORDER_BY_ENTITY_ALIAS); query.append(orderByConditionFields[i]); if ((i + 1) < orderByConditionFields.length) { if (orderByComparator.isAscending() ^ previous) { query.append(WHERE_GREATER_THAN_HAS_NEXT); } else { query.append(WHERE_LESSER_THAN_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { query.append(WHERE_GREATER_THAN); } else { query.append(WHERE_LESSER_THAN); } } } query.append(ORDER_BY_CLAUSE); String[] orderByFields = orderByComparator.getOrderByFields(); for (int i = 0; i < orderByFields.length; i++) { query.append(_ORDER_BY_ENTITY_ALIAS); query.append(orderByFields[i]); if ((i + 1) < orderByFields.length) { if (orderByComparator.isAscending() ^ previous) { query.append(ORDER_BY_ASC_HAS_NEXT); } else { query.append(ORDER_BY_DESC_HAS_NEXT); } } else { if (orderByComparator.isAscending() ^ previous) { query.append(ORDER_BY_ASC); } else { query.append(ORDER_BY_DESC); } } } } else { query.append(UserInfoModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Query q = session.createQuery(sql); q.setFirstResult(0); q.setMaxResults(2); QueryPos qPos = QueryPos.getInstance(q); qPos.add(moduleId); if (orderByComparator != null) { Object[] values = orderByComparator.getOrderByConditionValues(userInfo); for (Object value : values) { qPos.add(value); } } List<UserInfo> list = q.list(); if (list.size() == 2) { return list.get(1); } else { return null; } } /** * Returns all the user infos. * * @return the user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findAll() throws SystemException { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); } /** * Returns a range of all the user infos. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @return the range of user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findAll(int start, int end) throws SystemException { return findAll(start, end, null); } /** * Returns an ordered range of all the user infos. * * <p> * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. * </p> * * @param start the lower bound of the range of user infos * @param end the upper bound of the range of user infos (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @return the ordered range of user infos * @throws SystemException if a system exception occurred */ public List<UserInfo> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException { FinderPath finderPath = null; Object[] finderArgs = new Object[] { start, end, orderByComparator }; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL; finderArgs = FINDER_ARGS_EMPTY; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_ALL; finderArgs = new Object[] { start, end, orderByComparator }; } List<UserInfo> list = (List<UserInfo>)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_USERINFO); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_USERINFO.concat(UserInfoModelImpl.ORDER_BY_JPQL); } Session session = null; try { session = openSession(); Query q = session.createQuery(sql); if (orderByComparator == null) { list = (List<UserInfo>)QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); } else { list = (List<UserInfo>)QueryUtil.list(q, getDialect(), start, end); } } catch (Exception e) { throw processException(e); } finally { if (list == null) { FinderCacheUtil.removeResult(finderPath, finderArgs); } else { cacheResult(list); FinderCacheUtil.putResult(finderPath, finderArgs, list); } closeSession(session); } } return list; } /** * Removes all the user infos where userId = ? from the database. * * @param userId the user ID * @throws SystemException if a system exception occurred */ public void removeByByUser(long userId) throws SystemException { for (UserInfo userInfo : findByByUser(userId)) { remove(userInfo); } } /** * Removes all the user infos where companyId = ? from the database. * * @param companyId the company ID * @throws SystemException if a system exception occurred */ public void removeByByCompany(long companyId) throws SystemException { for (UserInfo userInfo : findByByCompany(companyId)) { remove(userInfo); } } /** * Removes all the user infos where moduleId = ? from the database. * * @param moduleId the module ID * @throws SystemException if a system exception occurred */ public void removeByModule(long moduleId) throws SystemException { for (UserInfo userInfo : findByModule(moduleId)) { remove(userInfo); } } /** * Removes all the user infos from the database. * * @throws SystemException if a system exception occurred */ public void removeAll() throws SystemException { for (UserInfo userInfo : findAll()) { remove(userInfo); } } /** * Returns the number of user infos where userId = ?. * * @param userId the user ID * @return the number of matching user infos * @throws SystemException if a system exception occurred */ public int countByByUser(long userId) throws SystemException { Object[] finderArgs = new Object[] { userId }; Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_BY_BYUSER, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_USERINFO_WHERE); query.append(_FINDER_COLUMN_BYUSER_USERID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(userId); count = (Long)q.uniqueResult(); } catch (Exception e) { throw processException(e); } finally { if (count == null) { count = Long.valueOf(0); } FinderCacheUtil.putResult(FINDER_PATH_COUNT_BY_BYUSER, finderArgs, count); closeSession(session); } } return count.intValue(); } /** * Returns the number of user infos where companyId = ?. * * @param companyId the company ID * @return the number of matching user infos * @throws SystemException if a system exception occurred */ public int countByByCompany(long companyId) throws SystemException { Object[] finderArgs = new Object[] { companyId }; Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_BY_BYCOMPANY, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_USERINFO_WHERE); query.append(_FINDER_COLUMN_BYCOMPANY_COMPANYID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(companyId); count = (Long)q.uniqueResult(); } catch (Exception e) { throw processException(e); } finally { if (count == null) { count = Long.valueOf(0); } FinderCacheUtil.putResult(FINDER_PATH_COUNT_BY_BYCOMPANY, finderArgs, count); closeSession(session); } } return count.intValue(); } /** * Returns the number of user infos where moduleId = ?. * * @param moduleId the module ID * @return the number of matching user infos * @throws SystemException if a system exception occurred */ public int countByModule(long moduleId) throws SystemException { Object[] finderArgs = new Object[] { moduleId }; Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_BY_MODULE, finderArgs, this); if (count == null) { StringBundler query = new StringBundler(2); query.append(_SQL_COUNT_USERINFO_WHERE); query.append(_FINDER_COLUMN_MODULE_MODULEID_2); String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(moduleId); count = (Long)q.uniqueResult(); } catch (Exception e) { throw processException(e); } finally { if (count == null) { count = Long.valueOf(0); } FinderCacheUtil.putResult(FINDER_PATH_COUNT_BY_MODULE, finderArgs, count); closeSession(session); } } return count.intValue(); } /** * Returns the number of user infos. * * @return the number of user infos * @throws SystemException if a system exception occurred */ public int countAll() throws SystemException { Long count = (Long)FinderCacheUtil.getResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, this); if (count == null) { Session session = null; try { session = openSession(); Query q = session.createQuery(_SQL_COUNT_USERINFO); count = (Long)q.uniqueResult(); } catch (Exception e) { throw processException(e); } finally { if (count == null) { count = Long.valueOf(0); } FinderCacheUtil.putResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, count); closeSession(session); } } return count.intValue(); } /** * Initializes the user info persistence. */ public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.util.service.ServiceProps.get( "value.object.listener.com.ese.ils.beta.model.UserInfo"))); if (listenerClassNames.length > 0) { try { List<ModelListener<UserInfo>> listenersList = new ArrayList<ModelListener<UserInfo>>(); for (String listenerClassName : listenerClassNames) { listenersList.add((ModelListener<UserInfo>)InstanceFactory.newInstance( listenerClassName)); } listeners = listenersList.toArray(new ModelListener[listenersList.size()]); } catch (Exception e) { _log.error(e); } } } public void destroy() { EntityCacheUtil.removeCache(UserInfoImpl.class.getName()); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_ENTITY); FinderCacheUtil.removeCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION); } @BeanReference(type = FavoritePersistence.class) protected FavoritePersistence favoritePersistence; @BeanReference(type = ModulePersistence.class) protected ModulePersistence modulePersistence; @BeanReference(type = PanicButtonPersistence.class) protected PanicButtonPersistence panicButtonPersistence; @BeanReference(type = QuestionPersistence.class) protected QuestionPersistence questionPersistence; @BeanReference(type = SlidePersistence.class) protected SlidePersistence slidePersistence; @BeanReference(type = UserInfoPersistence.class) protected UserInfoPersistence userInfoPersistence; @BeanReference(type = ResourcePersistence.class) protected ResourcePersistence resourcePersistence; @BeanReference(type = UserPersistence.class) protected UserPersistence userPersistence; private static final String _SQL_SELECT_USERINFO = "SELECT userInfo FROM UserInfo userInfo"; private static final String _SQL_SELECT_USERINFO_WHERE = "SELECT userInfo FROM UserInfo userInfo WHERE "; private static final String _SQL_COUNT_USERINFO = "SELECT COUNT(userInfo) FROM UserInfo userInfo"; private static final String _SQL_COUNT_USERINFO_WHERE = "SELECT COUNT(userInfo) FROM UserInfo userInfo WHERE "; private static final String _FINDER_COLUMN_BYUSER_USERID_2 = "userInfo.userId = ?"; private static final String _FINDER_COLUMN_BYCOMPANY_COMPANYID_2 = "userInfo.companyId = ?"; private static final String _FINDER_COLUMN_MODULE_MODULEID_2 = "userInfo.moduleId = ?"; private static final String _ORDER_BY_ENTITY_ALIAS = "userInfo."; private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No UserInfo exists with the primary key "; private static final String _NO_SUCH_ENTITY_WITH_KEY = "No UserInfo exists with the key {"; private static final boolean _HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE = GetterUtil.getBoolean(PropsUtil.get( PropsKeys.HIBERNATE_CACHE_USE_SECOND_LEVEL_CACHE)); private static Log _log = LogFactoryUtil.getLog(UserInfoPersistenceImpl.class); private static UserInfo _nullUserInfo = new UserInfoImpl() { @Override public Object clone() { return this; } @Override public CacheModel<UserInfo> toCacheModel() { return _nullUserInfoCacheModel; } }; private static CacheModel<UserInfo> _nullUserInfoCacheModel = new CacheModel<UserInfo>() { public UserInfo toEntityModel() { return _nullUserInfo; } }; }