Search in sources :

Example 36 with UnmodifiableList

use of com.liferay.portal.kernel.util.UnmodifiableList in project liferay-ide by liferay.

the class KBArticlePersistenceImpl method findByG_M.

/**
 * Returns an ordered range of all the k b articles where groupId = ? and main = ?.
 *
 * <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. 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 com.liferay.knowledgebase.model.impl.KBArticleModelImpl}. 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 main the main
 * @param start the lower bound of the range of k b articles
 * @param end the upper bound of the range of k b articles (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching k b articles
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBArticle> findByG_M(long groupId, boolean main, 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_G_M;
        finderArgs = new Object[] { groupId, main };
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_G_M;
        finderArgs = new Object[] { groupId, main, start, end, orderByComparator };
    }
    List<KBArticle> list = (List<KBArticle>) FinderCacheUtil.getResult(finderPath, finderArgs, this);
    if ((list != null) && !list.isEmpty()) {
        for (KBArticle kbArticle : list) {
            if ((groupId != kbArticle.getGroupId()) || (main != kbArticle.getMain())) {
                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_KBARTICLE_WHERE);
        query.append(_FINDER_COLUMN_G_M_GROUPID_2);
        query.append(_FINDER_COLUMN_G_M_MAIN_2);
        if (orderByComparator != null) {
            appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
        } else if (pagination) {
            query.append(KBArticleModelImpl.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);
            qPos.add(main);
            if (!pagination) {
                list = (List<KBArticle>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBArticle>(list);
            } else {
                list = (List<KBArticle>) 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;
}
Also used : SQLQuery(com.liferay.portal.kernel.dao.orm.SQLQuery) Query(com.liferay.portal.kernel.dao.orm.Query) StringBundler(com.liferay.portal.kernel.util.StringBundler) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArticleException(com.liferay.knowledgebase.NoSuchArticleException) KBArticle(com.liferay.knowledgebase.model.KBArticle) FinderPath(com.liferay.portal.kernel.dao.orm.FinderPath) ArrayList(java.util.ArrayList) UnmodifiableList(com.liferay.portal.kernel.util.UnmodifiableList) List(java.util.List) QueryPos(com.liferay.portal.kernel.dao.orm.QueryPos) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 37 with UnmodifiableList

use of com.liferay.portal.kernel.util.UnmodifiableList in project liferay-ide by liferay.

the class KBCommentPersistenceImpl method findByC_C_S.

/**
 * Returns an ordered range of all the k b comments where classNameId = &#63; and classPK = &#63; and status = any &#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 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 com.liferay.knowledgebase.model.impl.KBCommentModelImpl}. 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 classNameId the class name ID
 * @param classPK the class p k
 * @param statuses the statuses
 * @param start the lower bound of the range of k b comments
 * @param end the upper bound of the range of k b comments (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching k b comments
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBComment> findByC_C_S(long classNameId, long classPK, int[] statuses, int start, int end, OrderByComparator orderByComparator) throws SystemException {
    if ((statuses != null) && (statuses.length == 1)) {
        return findByC_C_S(classNameId, classPK, statuses[0], start, end, orderByComparator);
    }
    boolean pagination = true;
    Object[] finderArgs = null;
    if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) {
        pagination = false;
        finderArgs = new Object[] { classNameId, classPK, StringUtil.merge(statuses) };
    } else {
        finderArgs = new Object[] { classNameId, classPK, StringUtil.merge(statuses), start, end, orderByComparator };
    }
    List<KBComment> list = (List<KBComment>) FinderCacheUtil.getResult(FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C_S, finderArgs, this);
    if ((list != null) && !list.isEmpty()) {
        for (KBComment kbComment : list) {
            if ((classNameId != kbComment.getClassNameId()) || (classPK != kbComment.getClassPK()) || !ArrayUtil.contains(statuses, kbComment.getStatus())) {
                list = null;
                break;
            }
        }
    }
    if (list == null) {
        StringBundler query = new StringBundler();
        query.append(_SQL_SELECT_KBCOMMENT_WHERE);
        boolean conjunctionable = false;
        if (conjunctionable) {
            query.append(WHERE_AND);
        }
        query.append(_FINDER_COLUMN_C_C_S_CLASSNAMEID_5);
        conjunctionable = true;
        if (conjunctionable) {
            query.append(WHERE_AND);
        }
        query.append(_FINDER_COLUMN_C_C_S_CLASSPK_5);
        conjunctionable = true;
        if ((statuses == null) || (statuses.length > 0)) {
            if (conjunctionable) {
                query.append(WHERE_AND);
            }
            query.append(StringPool.OPEN_PARENTHESIS);
            for (int i = 0; i < statuses.length; i++) {
                query.append(_FINDER_COLUMN_C_C_S_STATUS_5);
                if ((i + 1) < statuses.length) {
                    query.append(WHERE_OR);
                }
            }
            query.append(StringPool.CLOSE_PARENTHESIS);
            conjunctionable = true;
        }
        if (orderByComparator != null) {
            appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
        } else if (pagination) {
            query.append(KBCommentModelImpl.ORDER_BY_JPQL);
        }
        String sql = query.toString();
        Session session = null;
        try {
            session = openSession();
            Query q = session.createQuery(sql);
            QueryPos qPos = QueryPos.getInstance(q);
            qPos.add(classNameId);
            qPos.add(classPK);
            if (statuses != null) {
                qPos.add(statuses);
            }
            if (!pagination) {
                list = (List<KBComment>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBComment>(list);
            } else {
                list = (List<KBComment>) QueryUtil.list(q, getDialect(), start, end);
            }
            cacheResult(list);
            FinderCacheUtil.putResult(FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C_S, finderArgs, list);
        } catch (Exception e) {
            FinderCacheUtil.removeResult(FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C_S, finderArgs);
            throw processException(e);
        } finally {
            closeSession(session);
        }
    }
    return list;
}
Also used : Query(com.liferay.portal.kernel.dao.orm.Query) StringBundler(com.liferay.portal.kernel.util.StringBundler) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchCommentException(com.liferay.knowledgebase.NoSuchCommentException) KBComment(com.liferay.knowledgebase.model.KBComment) ArrayList(java.util.ArrayList) UnmodifiableList(com.liferay.portal.kernel.util.UnmodifiableList) List(java.util.List) QueryPos(com.liferay.portal.kernel.dao.orm.QueryPos) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 38 with UnmodifiableList

use of com.liferay.portal.kernel.util.UnmodifiableList in project liferay-ide by liferay.

the class KBCommentPersistenceImpl method findByC_C.

/**
 * Returns an ordered range of all the k b comments where classNameId = &#63; and classPK = &#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 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 com.liferay.knowledgebase.model.impl.KBCommentModelImpl}. 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 classNameId the class name ID
 * @param classPK the class p k
 * @param start the lower bound of the range of k b comments
 * @param end the upper bound of the range of k b comments (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching k b comments
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBComment> findByC_C(long classNameId, long classPK, 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_C_C;
        finderArgs = new Object[] { classNameId, classPK };
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C;
        finderArgs = new Object[] { classNameId, classPK, start, end, orderByComparator };
    }
    List<KBComment> list = (List<KBComment>) FinderCacheUtil.getResult(finderPath, finderArgs, this);
    if ((list != null) && !list.isEmpty()) {
        for (KBComment kbComment : list) {
            if ((classNameId != kbComment.getClassNameId()) || (classPK != kbComment.getClassPK())) {
                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_KBCOMMENT_WHERE);
        query.append(_FINDER_COLUMN_C_C_CLASSNAMEID_2);
        query.append(_FINDER_COLUMN_C_C_CLASSPK_2);
        if (orderByComparator != null) {
            appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
        } else if (pagination) {
            query.append(KBCommentModelImpl.ORDER_BY_JPQL);
        }
        String sql = query.toString();
        Session session = null;
        try {
            session = openSession();
            Query q = session.createQuery(sql);
            QueryPos qPos = QueryPos.getInstance(q);
            qPos.add(classNameId);
            qPos.add(classPK);
            if (!pagination) {
                list = (List<KBComment>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBComment>(list);
            } else {
                list = (List<KBComment>) 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;
}
Also used : Query(com.liferay.portal.kernel.dao.orm.Query) StringBundler(com.liferay.portal.kernel.util.StringBundler) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchCommentException(com.liferay.knowledgebase.NoSuchCommentException) KBComment(com.liferay.knowledgebase.model.KBComment) FinderPath(com.liferay.portal.kernel.dao.orm.FinderPath) ArrayList(java.util.ArrayList) UnmodifiableList(com.liferay.portal.kernel.util.UnmodifiableList) List(java.util.List) QueryPos(com.liferay.portal.kernel.dao.orm.QueryPos) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 39 with UnmodifiableList

use of com.liferay.portal.kernel.util.UnmodifiableList in project liferay-ide by liferay.

the class KBCommentPersistenceImpl method findAll.

/**
 * Returns an ordered range of all the k b comments.
 *
 * <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. 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 com.liferay.knowledgebase.model.impl.KBCommentModelImpl}. 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 k b comments
 * @param end the upper bound of the range of k b comments (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of k b comments
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBComment> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException {
    boolean pagination = true;
    FinderPath finderPath = null;
    Object[] finderArgs = null;
    if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) {
        pagination = false;
        finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL;
        finderArgs = FINDER_ARGS_EMPTY;
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_ALL;
        finderArgs = new Object[] { start, end, orderByComparator };
    }
    List<KBComment> list = (List<KBComment>) 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_KBCOMMENT);
            appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
            sql = query.toString();
        } else {
            sql = _SQL_SELECT_KBCOMMENT;
            if (pagination) {
                sql = sql.concat(KBCommentModelImpl.ORDER_BY_JPQL);
            }
        }
        Session session = null;
        try {
            session = openSession();
            Query q = session.createQuery(sql);
            if (!pagination) {
                list = (List<KBComment>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBComment>(list);
            } else {
                list = (List<KBComment>) 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;
}
Also used : Query(com.liferay.portal.kernel.dao.orm.Query) StringBundler(com.liferay.portal.kernel.util.StringBundler) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchCommentException(com.liferay.knowledgebase.NoSuchCommentException) KBComment(com.liferay.knowledgebase.model.KBComment) FinderPath(com.liferay.portal.kernel.dao.orm.FinderPath) ArrayList(java.util.ArrayList) UnmodifiableList(com.liferay.portal.kernel.util.UnmodifiableList) List(java.util.List) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 40 with UnmodifiableList

use of com.liferay.portal.kernel.util.UnmodifiableList in project liferay-ide by liferay.

the class KBCommentPersistenceImpl method findByC_C_S.

/**
 * Returns an ordered range of all the k b comments where classNameId = &#63; and classPK = &#63; and status = &#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 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 com.liferay.knowledgebase.model.impl.KBCommentModelImpl}. 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 classNameId the class name ID
 * @param classPK the class p k
 * @param status the status
 * @param start the lower bound of the range of k b comments
 * @param end the upper bound of the range of k b comments (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching k b comments
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBComment> findByC_C_S(long classNameId, long classPK, int status, 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_C_C_S;
        finderArgs = new Object[] { classNameId, classPK, status };
    } else {
        finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_C_C_S;
        finderArgs = new Object[] { classNameId, classPK, status, start, end, orderByComparator };
    }
    List<KBComment> list = (List<KBComment>) FinderCacheUtil.getResult(finderPath, finderArgs, this);
    if ((list != null) && !list.isEmpty()) {
        for (KBComment kbComment : list) {
            if ((classNameId != kbComment.getClassNameId()) || (classPK != kbComment.getClassPK()) || (status != kbComment.getStatus())) {
                list = null;
                break;
            }
        }
    }
    if (list == null) {
        StringBundler query = null;
        if (orderByComparator != null) {
            query = new StringBundler(5 + (orderByComparator.getOrderByFields().length * 3));
        } else {
            query = new StringBundler(5);
        }
        query.append(_SQL_SELECT_KBCOMMENT_WHERE);
        query.append(_FINDER_COLUMN_C_C_S_CLASSNAMEID_2);
        query.append(_FINDER_COLUMN_C_C_S_CLASSPK_2);
        query.append(_FINDER_COLUMN_C_C_S_STATUS_2);
        if (orderByComparator != null) {
            appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
        } else if (pagination) {
            query.append(KBCommentModelImpl.ORDER_BY_JPQL);
        }
        String sql = query.toString();
        Session session = null;
        try {
            session = openSession();
            Query q = session.createQuery(sql);
            QueryPos qPos = QueryPos.getInstance(q);
            qPos.add(classNameId);
            qPos.add(classPK);
            qPos.add(status);
            if (!pagination) {
                list = (List<KBComment>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBComment>(list);
            } else {
                list = (List<KBComment>) 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;
}
Also used : Query(com.liferay.portal.kernel.dao.orm.Query) StringBundler(com.liferay.portal.kernel.util.StringBundler) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchCommentException(com.liferay.knowledgebase.NoSuchCommentException) KBComment(com.liferay.knowledgebase.model.KBComment) FinderPath(com.liferay.portal.kernel.dao.orm.FinderPath) ArrayList(java.util.ArrayList) UnmodifiableList(com.liferay.portal.kernel.util.UnmodifiableList) List(java.util.List) QueryPos(com.liferay.portal.kernel.dao.orm.QueryPos) Session(com.liferay.portal.kernel.dao.orm.Session)

Aggregations

Query (com.liferay.portal.kernel.dao.orm.Query)110 Session (com.liferay.portal.kernel.dao.orm.Session)110 SystemException (com.liferay.portal.kernel.exception.SystemException)110 StringBundler (com.liferay.portal.kernel.util.StringBundler)110 UnmodifiableList (com.liferay.portal.kernel.util.UnmodifiableList)110 ArrayList (java.util.ArrayList)110 List (java.util.List)110 QueryPos (com.liferay.portal.kernel.dao.orm.QueryPos)99 SQLQuery (com.liferay.portal.kernel.dao.orm.SQLQuery)96 FinderPath (com.liferay.portal.kernel.dao.orm.FinderPath)93 NoSuchArticleException (com.liferay.knowledgebase.NoSuchArticleException)45 KBArticle (com.liferay.knowledgebase.model.KBArticle)45 NoSuchSongException (org.liferay.jukebox.NoSuchSongException)12 Song (org.liferay.jukebox.model.Song)12 NoSuchAlbumException (org.liferay.jukebox.NoSuchAlbumException)11 Album (org.liferay.jukebox.model.Album)11 NoSuchCommentException (com.liferay.knowledgebase.NoSuchCommentException)10 KBComment (com.liferay.knowledgebase.model.KBComment)10 NoSuchArtistException (org.liferay.jukebox.NoSuchArtistException)9 Artist (org.liferay.jukebox.model.Artist)9