com.bemis.portal.migration.customer.service.persistence.impl.CustomerUserPersistenceImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.bemis.portal.migration.customer.service.persistence.impl.CustomerUserPersistenceImpl.java

Source

/**
 * 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.bemis.portal.migration.customer.service.persistence.impl;

import aQute.bnd.annotation.ProviderType;

import com.bemis.portal.migration.customer.exception.NoSuchCustomerUserException;
import com.bemis.portal.migration.customer.model.CustomerUser;
import com.bemis.portal.migration.customer.model.impl.CustomerUserImpl;
import com.bemis.portal.migration.customer.model.impl.CustomerUserModelImpl;
import com.bemis.portal.migration.customer.service.persistence.CustomerUserPersistence;

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.service.persistence.impl.BasePersistenceImpl;
import com.liferay.portal.kernel.util.OrderByComparator;
import com.liferay.portal.kernel.util.SetUtil;
import com.liferay.portal.kernel.util.StringBundler;
import com.liferay.portal.kernel.util.StringPool;
import com.liferay.portal.spring.extender.service.ServiceReference;

import java.io.Serializable;

import java.sql.Timestamp;

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

/**
 * The persistence implementation for the customer user service.
 *
 * <p>
 * Caching information and settings can be found in <code>portal.properties</code>
 * </p>
 *
 * @author Abdullah Bushnaq
 * @see CustomerUserPersistence
 * @see com.bemis.portal.migration.customer.service.persistence.CustomerUserUtil
 * @generated
 */
@ProviderType
public class CustomerUserPersistenceImpl extends BasePersistenceImpl<CustomerUser>
        implements CustomerUserPersistence {
    /*
     * NOTE FOR DEVELOPERS:
     *
     * Never modify or reference this class directly. Always use {@link CustomerUserUtil} to access the customer user persistence. Modify <code>service.xml</code> and rerun ServiceBuilder to regenerate this class.
     */
    public static final String FINDER_CLASS_NAME_ENTITY = CustomerUserImpl.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(
            CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserModelImpl.FINDER_CACHE_ENABLED,
            CustomerUserImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findAll", new String[0]);
    public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL = new FinderPath(
            CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserModelImpl.FINDER_CACHE_ENABLED,
            CustomerUserImpl.class, FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION, "findAll", new String[0]);
    public static final FinderPath FINDER_PATH_COUNT_ALL = new FinderPath(
            CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserModelImpl.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_LASTMODIFIEDDATE = new FinderPath(
            CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserModelImpl.FINDER_CACHE_ENABLED,
            CustomerUserImpl.class, FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "findBylastModifiedDate",
            new String[] { Date.class.getName(),

                    Integer.class.getName(), Integer.class.getName(), OrderByComparator.class.getName() });
    public static final FinderPath FINDER_PATH_WITH_PAGINATION_COUNT_BY_LASTMODIFIEDDATE = new FinderPath(
            CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserModelImpl.FINDER_CACHE_ENABLED, Long.class,
            FINDER_CLASS_NAME_LIST_WITH_PAGINATION, "countBylastModifiedDate",
            new String[] { Date.class.getName() });

    /**
     * Returns all the customer users where modifiedDate &ge; &#63;.
     *
     * @param modifiedDate the modified date
     * @return the matching customer users
     */
    @Override
    public List<CustomerUser> findBylastModifiedDate(Date modifiedDate) {
        return findBylastModifiedDate(modifiedDate, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
    }

    /**
     * Returns a range of all the customer users where modifiedDate &ge; &#63;.
     *
     * <p>
     * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link CustomerUserModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
     * </p>
     *
     * @param modifiedDate the modified date
     * @param start the lower bound of the range of customer users
     * @param end the upper bound of the range of customer users (not inclusive)
     * @return the range of matching customer users
     */
    @Override
    public List<CustomerUser> findBylastModifiedDate(Date modifiedDate, int start, int end) {
        return findBylastModifiedDate(modifiedDate, start, end, null);
    }

    /**
     * Returns an ordered range of all the customer users where modifiedDate &ge; &#63;.
     *
     * <p>
     * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link CustomerUserModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
     * </p>
     *
     * @param modifiedDate the modified date
     * @param start the lower bound of the range of customer users
     * @param end the upper bound of the range of customer users (not inclusive)
     * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
     * @return the ordered range of matching customer users
     */
    @Override
    public List<CustomerUser> findBylastModifiedDate(Date modifiedDate, int start, int end,
            OrderByComparator<CustomerUser> orderByComparator) {
        return findBylastModifiedDate(modifiedDate, start, end, orderByComparator, true);
    }

    /**
     * Returns an ordered range of all the customer users where modifiedDate &ge; &#63;.
     *
     * <p>
     * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link CustomerUserModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
     * </p>
     *
     * @param modifiedDate the modified date
     * @param start the lower bound of the range of customer users
     * @param end the upper bound of the range of customer users (not inclusive)
     * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
     * @param retrieveFromCache whether to retrieve from the finder cache
     * @return the ordered range of matching customer users
     */
    @Override
    public List<CustomerUser> findBylastModifiedDate(Date modifiedDate, int start, int end,
            OrderByComparator<CustomerUser> orderByComparator, boolean retrieveFromCache) {
        boolean pagination = true;
        FinderPath finderPath = null;
        Object[] finderArgs = null;

        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_LASTMODIFIEDDATE;
        finderArgs = new Object[] { modifiedDate, start, end, orderByComparator };

        List<CustomerUser> list = null;

        if (retrieveFromCache) {
            list = (List<CustomerUser>) finderCache.getResult(finderPath, finderArgs, this);

            if ((list != null) && !list.isEmpty()) {
                for (CustomerUser customerUser : list) {
                    if ((modifiedDate.getTime() > customerUser.getModifiedDate().getTime())) {
                        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_CUSTOMERUSER_WHERE);

            boolean bindModifiedDate = false;

            if (modifiedDate == null) {
                query.append(_FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_1);
            } else {
                bindModifiedDate = true;

                query.append(_FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_2);
            }

            if (orderByComparator != null) {
                appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
            } else if (pagination) {
                query.append(CustomerUserModelImpl.ORDER_BY_JPQL);
            }

            String sql = query.toString();

            Session session = null;

            try {
                session = openSession();

                Query q = session.createQuery(sql);

                QueryPos qPos = QueryPos.getInstance(q);

                if (bindModifiedDate) {
                    qPos.add(new Timestamp(modifiedDate.getTime()));
                }

                if (!pagination) {
                    list = (List<CustomerUser>) QueryUtil.list(q, getDialect(), start, end, false);

                    Collections.sort(list);

                    list = Collections.unmodifiableList(list);
                } else {
                    list = (List<CustomerUser>) 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 customer user in the ordered set where modifiedDate &ge; &#63;.
     *
     * @param modifiedDate the modified date
     * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
     * @return the first matching customer user
     * @throws NoSuchCustomerUserException if a matching customer user could not be found
     */
    @Override
    public CustomerUser findBylastModifiedDate_First(Date modifiedDate,
            OrderByComparator<CustomerUser> orderByComparator) throws NoSuchCustomerUserException {
        CustomerUser customerUser = fetchBylastModifiedDate_First(modifiedDate, orderByComparator);

        if (customerUser != null) {
            return customerUser;
        }

        StringBundler msg = new StringBundler(4);

        msg.append(_NO_SUCH_ENTITY_WITH_KEY);

        msg.append("modifiedDate=");
        msg.append(modifiedDate);

        msg.append(StringPool.CLOSE_CURLY_BRACE);

        throw new NoSuchCustomerUserException(msg.toString());
    }

    /**
     * Returns the first customer user in the ordered set where modifiedDate &ge; &#63;.
     *
     * @param modifiedDate the modified date
     * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
     * @return the first matching customer user, or <code>null</code> if a matching customer user could not be found
     */
    @Override
    public CustomerUser fetchBylastModifiedDate_First(Date modifiedDate,
            OrderByComparator<CustomerUser> orderByComparator) {
        List<CustomerUser> list = findBylastModifiedDate(modifiedDate, 0, 1, orderByComparator);

        if (!list.isEmpty()) {
            return list.get(0);
        }

        return null;
    }

    /**
     * Returns the last customer user in the ordered set where modifiedDate &ge; &#63;.
     *
     * @param modifiedDate the modified date
     * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
     * @return the last matching customer user
     * @throws NoSuchCustomerUserException if a matching customer user could not be found
     */
    @Override
    public CustomerUser findBylastModifiedDate_Last(Date modifiedDate,
            OrderByComparator<CustomerUser> orderByComparator) throws NoSuchCustomerUserException {
        CustomerUser customerUser = fetchBylastModifiedDate_Last(modifiedDate, orderByComparator);

        if (customerUser != null) {
            return customerUser;
        }

        StringBundler msg = new StringBundler(4);

        msg.append(_NO_SUCH_ENTITY_WITH_KEY);

        msg.append("modifiedDate=");
        msg.append(modifiedDate);

        msg.append(StringPool.CLOSE_CURLY_BRACE);

        throw new NoSuchCustomerUserException(msg.toString());
    }

    /**
     * Returns the last customer user in the ordered set where modifiedDate &ge; &#63;.
     *
     * @param modifiedDate the modified date
     * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
     * @return the last matching customer user, or <code>null</code> if a matching customer user could not be found
     */
    @Override
    public CustomerUser fetchBylastModifiedDate_Last(Date modifiedDate,
            OrderByComparator<CustomerUser> orderByComparator) {
        int count = countBylastModifiedDate(modifiedDate);

        if (count == 0) {
            return null;
        }

        List<CustomerUser> list = findBylastModifiedDate(modifiedDate, count - 1, count, orderByComparator);

        if (!list.isEmpty()) {
            return list.get(0);
        }

        return null;
    }

    /**
     * Returns the customer users before and after the current customer user in the ordered set where modifiedDate &ge; &#63;.
     *
     * @param binUserId the primary key of the current customer user
     * @param modifiedDate the modified date
     * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
     * @return the previous, current, and next customer user
     * @throws NoSuchCustomerUserException if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser[] findBylastModifiedDate_PrevAndNext(String binUserId, Date modifiedDate,
            OrderByComparator<CustomerUser> orderByComparator) throws NoSuchCustomerUserException {
        CustomerUser customerUser = findByPrimaryKey(binUserId);

        Session session = null;

        try {
            session = openSession();

            CustomerUser[] array = new CustomerUserImpl[3];

            array[0] = getBylastModifiedDate_PrevAndNext(session, customerUser, modifiedDate, orderByComparator,
                    true);

            array[1] = customerUser;

            array[2] = getBylastModifiedDate_PrevAndNext(session, customerUser, modifiedDate, orderByComparator,
                    false);

            return array;
        } catch (Exception e) {
            throw processException(e);
        } finally {
            closeSession(session);
        }
    }

    protected CustomerUser getBylastModifiedDate_PrevAndNext(Session session, CustomerUser customerUser,
            Date modifiedDate, OrderByComparator<CustomerUser> 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_CUSTOMERUSER_WHERE);

        boolean bindModifiedDate = false;

        if (modifiedDate == null) {
            query.append(_FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_1);
        } else {
            bindModifiedDate = true;

            query.append(_FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_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(CustomerUserModelImpl.ORDER_BY_JPQL);
        }

        String sql = query.toString();

        Query q = session.createQuery(sql);

        q.setFirstResult(0);
        q.setMaxResults(2);

        QueryPos qPos = QueryPos.getInstance(q);

        if (bindModifiedDate) {
            qPos.add(new Timestamp(modifiedDate.getTime()));
        }

        if (orderByComparator != null) {
            Object[] values = orderByComparator.getOrderByConditionValues(customerUser);

            for (Object value : values) {
                qPos.add(value);
            }
        }

        List<CustomerUser> list = q.list();

        if (list.size() == 2) {
            return list.get(1);
        } else {
            return null;
        }
    }

    /**
     * Removes all the customer users where modifiedDate &ge; &#63; from the database.
     *
     * @param modifiedDate the modified date
     */
    @Override
    public void removeBylastModifiedDate(Date modifiedDate) {
        for (CustomerUser customerUser : findBylastModifiedDate(modifiedDate, QueryUtil.ALL_POS, QueryUtil.ALL_POS,
                null)) {
            remove(customerUser);
        }
    }

    /**
     * Returns the number of customer users where modifiedDate &ge; &#63;.
     *
     * @param modifiedDate the modified date
     * @return the number of matching customer users
     */
    @Override
    public int countBylastModifiedDate(Date modifiedDate) {
        FinderPath finderPath = FINDER_PATH_WITH_PAGINATION_COUNT_BY_LASTMODIFIEDDATE;

        Object[] finderArgs = new Object[] { modifiedDate };

        Long count = (Long) finderCache.getResult(finderPath, finderArgs, this);

        if (count == null) {
            StringBundler query = new StringBundler(2);

            query.append(_SQL_COUNT_CUSTOMERUSER_WHERE);

            boolean bindModifiedDate = false;

            if (modifiedDate == null) {
                query.append(_FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_1);
            } else {
                bindModifiedDate = true;

                query.append(_FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_2);
            }

            String sql = query.toString();

            Session session = null;

            try {
                session = openSession();

                Query q = session.createQuery(sql);

                QueryPos qPos = QueryPos.getInstance(q);

                if (bindModifiedDate) {
                    qPos.add(new Timestamp(modifiedDate.getTime()));
                }

                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_LASTMODIFIEDDATE_MODIFIEDDATE_1 = "customerUser.modifiedDate IS NULL";
    private static final String _FINDER_COLUMN_LASTMODIFIEDDATE_MODIFIEDDATE_2 = "customerUser.modifiedDate >= ?";

    public CustomerUserPersistenceImpl() {
        setModelClass(CustomerUser.class);
    }

    /**
     * Caches the customer user in the entity cache if it is enabled.
     *
     * @param customerUser the customer user
     */
    @Override
    public void cacheResult(CustomerUser customerUser) {
        entityCache.putResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                customerUser.getPrimaryKey(), customerUser);

        customerUser.resetOriginalValues();
    }

    /**
     * Caches the customer users in the entity cache if it is enabled.
     *
     * @param customerUsers the customer users
     */
    @Override
    public void cacheResult(List<CustomerUser> customerUsers) {
        for (CustomerUser customerUser : customerUsers) {
            if (entityCache.getResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                    customerUser.getPrimaryKey()) == null) {
                cacheResult(customerUser);
            } else {
                customerUser.resetOriginalValues();
            }
        }
    }

    /**
     * Clears the cache for all customer users.
     *
     * <p>
     * The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
     * </p>
     */
    @Override
    public void clearCache() {
        entityCache.clearCache(CustomerUserImpl.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 customer user.
     *
     * <p>
     * The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
     * </p>
     */
    @Override
    public void clearCache(CustomerUser customerUser) {
        entityCache.removeResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                customerUser.getPrimaryKey());

        finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
        finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
    }

    @Override
    public void clearCache(List<CustomerUser> customerUsers) {
        finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
        finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);

        for (CustomerUser customerUser : customerUsers) {
            entityCache.removeResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                    customerUser.getPrimaryKey());
        }
    }

    /**
     * Creates a new customer user with the primary key. Does not add the customer user to the database.
     *
     * @param binUserId the primary key for the new customer user
     * @return the new customer user
     */
    @Override
    public CustomerUser create(String binUserId) {
        CustomerUser customerUser = new CustomerUserImpl();

        customerUser.setNew(true);
        customerUser.setPrimaryKey(binUserId);

        return customerUser;
    }

    /**
     * Removes the customer user with the primary key from the database. Also notifies the appropriate model listeners.
     *
     * @param binUserId the primary key of the customer user
     * @return the customer user that was removed
     * @throws NoSuchCustomerUserException if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser remove(String binUserId) throws NoSuchCustomerUserException {
        return remove((Serializable) binUserId);
    }

    /**
     * Removes the customer user with the primary key from the database. Also notifies the appropriate model listeners.
     *
     * @param primaryKey the primary key of the customer user
     * @return the customer user that was removed
     * @throws NoSuchCustomerUserException if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser remove(Serializable primaryKey) throws NoSuchCustomerUserException {
        Session session = null;

        try {
            session = openSession();

            CustomerUser customerUser = (CustomerUser) session.get(CustomerUserImpl.class, primaryKey);

            if (customerUser == null) {
                if (_log.isDebugEnabled()) {
                    _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
                }

                throw new NoSuchCustomerUserException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
            }

            return remove(customerUser);
        } catch (NoSuchCustomerUserException nsee) {
            throw nsee;
        } catch (Exception e) {
            throw processException(e);
        } finally {
            closeSession(session);
        }
    }

    @Override
    protected CustomerUser removeImpl(CustomerUser customerUser) {
        customerUser = toUnwrappedModel(customerUser);

        Session session = null;

        try {
            session = openSession();

            if (!session.contains(customerUser)) {
                customerUser = (CustomerUser) session.get(CustomerUserImpl.class, customerUser.getPrimaryKeyObj());
            }

            if (customerUser != null) {
                session.delete(customerUser);
            }
        } catch (Exception e) {
            throw processException(e);
        } finally {
            closeSession(session);
        }

        if (customerUser != null) {
            clearCache(customerUser);
        }

        return customerUser;
    }

    @Override
    public CustomerUser updateImpl(CustomerUser customerUser) {
        customerUser = toUnwrappedModel(customerUser);

        boolean isNew = customerUser.isNew();

        Session session = null;

        try {
            session = openSession();

            if (customerUser.isNew()) {
                session.save(customerUser);

                customerUser.setNew(false);
            } else {
                customerUser = (CustomerUser) session.merge(customerUser);
            }
        } catch (Exception e) {
            throw processException(e);
        } finally {
            closeSession(session);
        }

        finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);

        if (isNew || !CustomerUserModelImpl.COLUMN_BITMASK_ENABLED) {
            finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
        }

        entityCache.putResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                customerUser.getPrimaryKey(), customerUser, false);

        customerUser.resetOriginalValues();

        return customerUser;
    }

    protected CustomerUser toUnwrappedModel(CustomerUser customerUser) {
        if (customerUser instanceof CustomerUserImpl) {
            return customerUser;
        }

        CustomerUserImpl customerUserImpl = new CustomerUserImpl();

        customerUserImpl.setNew(customerUser.isNew());
        customerUserImpl.setPrimaryKey(customerUser.getPrimaryKey());

        customerUserImpl.setBinUserId(customerUser.getBinUserId());
        customerUserImpl.setModifiedDate(customerUser.getModifiedDate());
        customerUserImpl.setEmail(customerUser.getEmail());
        customerUserImpl.setFirstName(customerUser.getFirstName());
        customerUserImpl.setLastName(customerUser.getLastName());
        customerUserImpl.setGender(customerUser.getGender());
        customerUserImpl.setScreenName(customerUser.getScreenName());

        return customerUserImpl;
    }

    /**
     * Returns the customer user 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 customer user
     * @return the customer user
     * @throws NoSuchCustomerUserException if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser findByPrimaryKey(Serializable primaryKey) throws NoSuchCustomerUserException {
        CustomerUser customerUser = fetchByPrimaryKey(primaryKey);

        if (customerUser == null) {
            if (_log.isDebugEnabled()) {
                _log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
            }

            throw new NoSuchCustomerUserException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
        }

        return customerUser;
    }

    /**
     * Returns the customer user with the primary key or throws a {@link NoSuchCustomerUserException} if it could not be found.
     *
     * @param binUserId the primary key of the customer user
     * @return the customer user
     * @throws NoSuchCustomerUserException if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser findByPrimaryKey(String binUserId) throws NoSuchCustomerUserException {
        return findByPrimaryKey((Serializable) binUserId);
    }

    /**
     * Returns the customer user with the primary key or returns <code>null</code> if it could not be found.
     *
     * @param primaryKey the primary key of the customer user
     * @return the customer user, or <code>null</code> if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser fetchByPrimaryKey(Serializable primaryKey) {
        Serializable serializable = entityCache.getResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED,
                CustomerUserImpl.class, primaryKey);

        if (serializable == nullModel) {
            return null;
        }

        CustomerUser customerUser = (CustomerUser) serializable;

        if (customerUser == null) {
            Session session = null;

            try {
                session = openSession();

                customerUser = (CustomerUser) session.get(CustomerUserImpl.class, primaryKey);

                if (customerUser != null) {
                    cacheResult(customerUser);
                } else {
                    entityCache.putResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                            primaryKey, nullModel);
                }
            } catch (Exception e) {
                entityCache.removeResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                        primaryKey);

                throw processException(e);
            } finally {
                closeSession(session);
            }
        }

        return customerUser;
    }

    /**
     * Returns the customer user with the primary key or returns <code>null</code> if it could not be found.
     *
     * @param binUserId the primary key of the customer user
     * @return the customer user, or <code>null</code> if a customer user with the primary key could not be found
     */
    @Override
    public CustomerUser fetchByPrimaryKey(String binUserId) {
        return fetchByPrimaryKey((Serializable) binUserId);
    }

    @Override
    public Map<Serializable, CustomerUser> fetchByPrimaryKeys(Set<Serializable> primaryKeys) {
        if (primaryKeys.isEmpty()) {
            return Collections.emptyMap();
        }

        Map<Serializable, CustomerUser> map = new HashMap<Serializable, CustomerUser>();

        if (primaryKeys.size() == 1) {
            Iterator<Serializable> iterator = primaryKeys.iterator();

            Serializable primaryKey = iterator.next();

            CustomerUser customerUser = fetchByPrimaryKey(primaryKey);

            if (customerUser != null) {
                map.put(primaryKey, customerUser);
            }

            return map;
        }

        Set<Serializable> uncachedPrimaryKeys = null;

        for (Serializable primaryKey : primaryKeys) {
            Serializable serializable = entityCache.getResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED,
                    CustomerUserImpl.class, primaryKey);

            if (serializable != nullModel) {
                if (serializable == null) {
                    if (uncachedPrimaryKeys == null) {
                        uncachedPrimaryKeys = new HashSet<Serializable>();
                    }

                    uncachedPrimaryKeys.add(primaryKey);
                } else {
                    map.put(primaryKey, (CustomerUser) serializable);
                }
            }
        }

        if (uncachedPrimaryKeys == null) {
            return map;
        }

        StringBundler query = new StringBundler((uncachedPrimaryKeys.size() * 4) + 1);

        query.append(_SQL_SELECT_CUSTOMERUSER_WHERE_PKS_IN);

        for (Serializable primaryKey : uncachedPrimaryKeys) {
            query.append(StringPool.APOSTROPHE);
            query.append((String) primaryKey);
            query.append(StringPool.APOSTROPHE);

            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 (CustomerUser customerUser : (List<CustomerUser>) q.list()) {
                map.put(customerUser.getPrimaryKeyObj(), customerUser);

                cacheResult(customerUser);

                uncachedPrimaryKeys.remove(customerUser.getPrimaryKeyObj());
            }

            for (Serializable primaryKey : uncachedPrimaryKeys) {
                entityCache.putResult(CustomerUserModelImpl.ENTITY_CACHE_ENABLED, CustomerUserImpl.class,
                        primaryKey, nullModel);
            }
        } catch (Exception e) {
            throw processException(e);
        } finally {
            closeSession(session);
        }

        return map;
    }

    /**
     * Returns all the customer users.
     *
     * @return the customer users
     */
    @Override
    public List<CustomerUser> findAll() {
        return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
    }

    /**
     * Returns a range of all the customer users.
     *
     * <p>
     * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link CustomerUserModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
     * </p>
     *
     * @param start the lower bound of the range of customer users
     * @param end the upper bound of the range of customer users (not inclusive)
     * @return the range of customer users
     */
    @Override
    public List<CustomerUser> findAll(int start, int end) {
        return findAll(start, end, null);
    }

    /**
     * Returns an ordered range of all the customer users.
     *
     * <p>
     * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link CustomerUserModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
     * </p>
     *
     * @param start the lower bound of the range of customer users
     * @param end the upper bound of the range of customer users (not inclusive)
     * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
     * @return the ordered range of customer users
     */
    @Override
    public List<CustomerUser> findAll(int start, int end, OrderByComparator<CustomerUser> orderByComparator) {
        return findAll(start, end, orderByComparator, true);
    }

    /**
     * Returns an ordered range of all the customer users.
     *
     * <p>
     * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link CustomerUserModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
     * </p>
     *
     * @param start the lower bound of the range of customer users
     * @param end the upper bound of the range of customer users (not inclusive)
     * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
     * @param retrieveFromCache whether to retrieve from the finder cache
     * @return the ordered range of customer users
     */
    @Override
    public List<CustomerUser> findAll(int start, int end, OrderByComparator<CustomerUser> 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<CustomerUser> list = null;

        if (retrieveFromCache) {
            list = (List<CustomerUser>) 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_CUSTOMERUSER);

                appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);

                sql = query.toString();
            } else {
                sql = _SQL_SELECT_CUSTOMERUSER;

                if (pagination) {
                    sql = sql.concat(CustomerUserModelImpl.ORDER_BY_JPQL);
                }
            }

            Session session = null;

            try {
                session = openSession();

                Query q = session.createQuery(sql);

                if (!pagination) {
                    list = (List<CustomerUser>) QueryUtil.list(q, getDialect(), start, end, false);

                    Collections.sort(list);

                    list = Collections.unmodifiableList(list);
                } else {
                    list = (List<CustomerUser>) 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 customer users from the database.
     *
     */
    @Override
    public void removeAll() {
        for (CustomerUser customerUser : findAll()) {
            remove(customerUser);
        }
    }

    /**
     * Returns the number of customer users.
     *
     * @return the number of customer users
     */
    @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_CUSTOMERUSER);

                count = (Long) q.uniqueResult();

                finderCache.putResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY, count);
            } catch (Exception e) {
                finderCache.removeResult(FINDER_PATH_COUNT_ALL, FINDER_ARGS_EMPTY);

                throw processException(e);
            } finally {
                closeSession(session);
            }
        }

        return count.intValue();
    }

    @Override
    public Set<String> getBadColumnNames() {
        return _badColumnNames;
    }

    @Override
    protected Map<String, Integer> getTableColumnsMap() {
        return CustomerUserModelImpl.TABLE_COLUMNS_MAP;
    }

    /**
     * Initializes the customer user persistence.
     */
    public void afterPropertiesSet() {
    }

    public void destroy() {
        entityCache.removeCache(CustomerUserImpl.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 = EntityCache.class)
    protected EntityCache entityCache;
    @ServiceReference(type = FinderCache.class)
    protected FinderCache finderCache;
    private static final String _SQL_SELECT_CUSTOMERUSER = "SELECT customerUser FROM CustomerUser customerUser";
    private static final String _SQL_SELECT_CUSTOMERUSER_WHERE_PKS_IN = "SELECT customerUser FROM CustomerUser customerUser WHERE binUserId IN (";
    private static final String _SQL_SELECT_CUSTOMERUSER_WHERE = "SELECT customerUser FROM CustomerUser customerUser WHERE ";
    private static final String _SQL_COUNT_CUSTOMERUSER = "SELECT COUNT(customerUser) FROM CustomerUser customerUser";
    private static final String _SQL_COUNT_CUSTOMERUSER_WHERE = "SELECT COUNT(customerUser) FROM CustomerUser customerUser WHERE ";
    private static final String _ORDER_BY_ENTITY_ALIAS = "customerUser.";
    private static final String _NO_SUCH_ENTITY_WITH_PRIMARY_KEY = "No CustomerUser exists with the primary key ";
    private static final String _NO_SUCH_ENTITY_WITH_KEY = "No CustomerUser exists with the key {";
    private static final Log _log = LogFactoryUtil.getLog(CustomerUserPersistenceImpl.class);
    private static final Set<String> _badColumnNames = SetUtil.fromArray(new String[] { "email" });
}