Example usage for com.liferay.portal.kernel.dao.orm QueryUtil ALL_POS

List of usage examples for com.liferay.portal.kernel.dao.orm QueryUtil ALL_POS

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.dao.orm QueryUtil ALL_POS.

Prototype

int ALL_POS

To view the source code for com.liferay.portal.kernel.dao.orm QueryUtil ALL_POS.

Click Source Link

Usage

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Removes all the d2 biobanks where uuid = ? from the database.
 *
 * @param uuid the uuid//from  ww w. j  av  a 2s  . c o m
 * @throws SystemException if a system exception occurred
 */
@Override
public void removeByUuid(String uuid) throws SystemException {
    for (D2Biobank d2Biobank : findByUuid(uuid, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) {
        remove(d2Biobank);
    }
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns all the d2 biobanks where uuid = ? and companyId = ?.
 *
 * @param uuid the uuid/*  w ww. j  av a 2  s .  com*/
 * @param companyId the company ID
 * @return the matching d2 biobanks
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> findByUuid_C(String uuid, long companyId) throws SystemException {
    return findByUuid_C(uuid, companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns an ordered range of all the d2 biobanks where uuid = &#63; and companyId = &#63;.
 *
 * <p>//from w  ww.  ja  v a  2 s . c  o m
 * 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. 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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link at.meduni.liferay.portlet.bbmrieric.model.impl.D2BiobankModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
 * </p>
 *
 * @param uuid the uuid
 * @param companyId the company ID
 * @param start the lower bound of the range of d2 biobanks
 * @param end the upper bound of the range of d2 biobanks (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching d2 biobanks
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> findByUuid_C(String uuid, long companyId, int start, int end,
        OrderByComparator orderByComparator) throws SystemException {
    boolean pagination = true;
    FinderPath finderPath = null;
    Object[] finderArgs = null;

    if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) {
        pagination = false;
        finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_UUID_C;
        finderArgs = new Object[] { uuid, companyId };
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_UUID_C;
        finderArgs = new Object[] { uuid, companyId,

                start, end, orderByComparator };
    }

    List<D2Biobank> list = (List<D2Biobank>) FinderCacheUtil.getResult(finderPath, finderArgs, this);

    if ((list != null) && !list.isEmpty()) {
        for (D2Biobank d2Biobank : list) {
            if (!Validator.equals(uuid, d2Biobank.getUuid()) || (companyId != d2Biobank.getCompanyId())) {
                list = null;

                break;
            }
        }
    }

    if (list == null) {
        StringBundler query = null;

        if (orderByComparator != null) {
            query = new StringBundler(4 + (orderByComparator.getOrderByFields().length * 3));
        } else {
            query = new StringBundler(4);
        }

        query.append(_SQL_SELECT_D2BIOBANK_WHERE);

        boolean bindUuid = false;

        if (uuid == null) {
            query.append(_FINDER_COLUMN_UUID_C_UUID_1);
        } else if (uuid.equals(StringPool.BLANK)) {
            query.append(_FINDER_COLUMN_UUID_C_UUID_3);
        } else {
            bindUuid = true;

            query.append(_FINDER_COLUMN_UUID_C_UUID_2);
        }

        query.append(_FINDER_COLUMN_UUID_C_COMPANYID_2);

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

        String sql = query.toString();

        Session session = null;

        try {
            session = openSession();

            Query q = session.createQuery(sql);

            QueryPos qPos = QueryPos.getInstance(q);

            if (bindUuid) {
                qPos.add(uuid);
            }

            qPos.add(companyId);

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

                Collections.sort(list);

                list = new UnmodifiableList<D2Biobank>(list);
            } else {
                list = (List<D2Biobank>) QueryUtil.list(q, getDialect(), start, end);
            }

            cacheResult(list);

            FinderCacheUtil.putResult(finderPath, finderArgs, list);
        } catch (Exception e) {
            FinderCacheUtil.removeResult(finderPath, finderArgs);

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

    return list;
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Removes all the d2 biobanks where uuid = &#63; and companyId = &#63; from the database.
 *
 * @param uuid the uuid/*from   www. ja  v a2 s  .  c  o  m*/
 * @param companyId the company ID
 * @throws SystemException if a system exception occurred
 */
@Override
public void removeByUuid_C(String uuid, long companyId) throws SystemException {
    for (D2Biobank d2Biobank : findByUuid_C(uuid, companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) {
        remove(d2Biobank);
    }
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns all the d2 biobanks where groupId = &#63;.
 *
 * @param groupId the group ID/*from w w w.  j a  v  a 2 s  . c om*/
 * @return the matching d2 biobanks
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> findByGroupId(long groupId) throws SystemException {
    return findByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns an ordered range of all the d2 biobanks where groupId = &#63;.
 *
 * <p>/*from   w  w  w. j  a  va 2 s  . co m*/
 * 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. 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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link at.meduni.liferay.portlet.bbmrieric.model.impl.D2BiobankModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
 * </p>
 *
 * @param groupId the group ID
 * @param start the lower bound of the range of d2 biobanks
 * @param end the upper bound of the range of d2 biobanks (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching d2 biobanks
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
        throws SystemException {
    boolean pagination = true;
    FinderPath finderPath = null;
    Object[] finderArgs = null;

    if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) {
        pagination = false;
        finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_GROUPID;
        finderArgs = new Object[] { groupId };
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_GROUPID;
        finderArgs = new Object[] { groupId, start, end, orderByComparator };
    }

    List<D2Biobank> list = (List<D2Biobank>) FinderCacheUtil.getResult(finderPath, finderArgs, this);

    if ((list != null) && !list.isEmpty()) {
        for (D2Biobank d2Biobank : list) {
            if ((groupId != d2Biobank.getGroupId())) {
                list = null;

                break;
            }
        }
    }

    if (list == null) {
        StringBundler query = null;

        if (orderByComparator != null) {
            query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 3));
        } else {
            query = new StringBundler(3);
        }

        query.append(_SQL_SELECT_D2BIOBANK_WHERE);

        query.append(_FINDER_COLUMN_GROUPID_GROUPID_2);

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

        String sql = query.toString();

        Session session = null;

        try {
            session = openSession();

            Query q = session.createQuery(sql);

            QueryPos qPos = QueryPos.getInstance(q);

            qPos.add(groupId);

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

                Collections.sort(list);

                list = new UnmodifiableList<D2Biobank>(list);
            } else {
                list = (List<D2Biobank>) QueryUtil.list(q, getDialect(), start, end);
            }

            cacheResult(list);

            FinderCacheUtil.putResult(finderPath, finderArgs, list);
        } catch (Exception e) {
            FinderCacheUtil.removeResult(finderPath, finderArgs);

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

    return list;
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns all the d2 biobanks that the user has permission to view where groupId = &#63;.
 *
 * @param groupId the group ID//from   ww w . j av  a2 s .c  o m
 * @return the matching d2 biobanks that the user has permission to view
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> filterFindByGroupId(long groupId) throws SystemException {
    return filterFindByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Removes all the d2 biobanks where groupId = &#63; from the database.
 *
 * @param groupId the group ID//w ww.j av  a2  s .co  m
 * @throws SystemException if a system exception occurred
 */
@Override
public void removeByGroupId(long groupId) throws SystemException {
    for (D2Biobank d2Biobank : findByGroupId(groupId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) {
        remove(d2Biobank);
    }
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns all the d2 biobanks where companyId = &#63;.
 *
 * @param companyId the company ID// w  w w  .  jav  a2 s. co  m
 * @return the matching d2 biobanks
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> findByCompanyId(long companyId) throws SystemException {
    return findByCompanyId(companyId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
}

From source file:at.meduni.liferay.portlet.bbmrieric.service.persistence.D2BiobankPersistenceImpl.java

License:Open Source License

/**
 * Returns an ordered range of all the d2 biobanks where companyId = &#63;.
 *
 * <p>//from w w w  .  j  a v a  2s.c  o  m
 * 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. 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 com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link at.meduni.liferay.portlet.bbmrieric.model.impl.D2BiobankModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
 * </p>
 *
 * @param companyId the company ID
 * @param start the lower bound of the range of d2 biobanks
 * @param end the upper bound of the range of d2 biobanks (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching d2 biobanks
 * @throws SystemException if a system exception occurred
 */
@Override
public List<D2Biobank> findByCompanyId(long companyId, int start, int end, OrderByComparator orderByComparator)
        throws SystemException {
    boolean pagination = true;
    FinderPath finderPath = null;
    Object[] finderArgs = null;

    if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) {
        pagination = false;
        finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_COMPANYID;
        finderArgs = new Object[] { companyId };
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_COMPANYID;
        finderArgs = new Object[] { companyId, start, end, orderByComparator };
    }

    List<D2Biobank> list = (List<D2Biobank>) FinderCacheUtil.getResult(finderPath, finderArgs, this);

    if ((list != null) && !list.isEmpty()) {
        for (D2Biobank d2Biobank : list) {
            if ((companyId != d2Biobank.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_D2BIOBANK_WHERE);

        query.append(_FINDER_COLUMN_COMPANYID_COMPANYID_2);

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

        String sql = query.toString();

        Session session = null;

        try {
            session = openSession();

            Query q = session.createQuery(sql);

            QueryPos qPos = QueryPos.getInstance(q);

            qPos.add(companyId);

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

                Collections.sort(list);

                list = new UnmodifiableList<D2Biobank>(list);
            } else {
                list = (List<D2Biobank>) QueryUtil.list(q, getDialect(), start, end);
            }

            cacheResult(list);

            FinderCacheUtil.putResult(finderPath, finderArgs, list);
        } catch (Exception e) {
            FinderCacheUtil.removeResult(finderPath, finderArgs);

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

    return list;
}