Search in sources :

Example 36 with NoSuchArticleException

use of com.liferay.knowledgebase.NoSuchArticleException in project liferay-ide by liferay.

the class KBArticlePersistenceImpl method findByC_L_Last.

/**
 * Returns the last k b article in the ordered set where companyId = ? and latest = ?.
 *
 * @param companyId the company ID
 * @param latest the latest
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the last matching k b article
 * @throws com.liferay.knowledgebase.NoSuchArticleException if a matching k b article could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBArticle findByC_L_Last(long companyId, boolean latest, OrderByComparator orderByComparator) throws NoSuchArticleException, SystemException {
    KBArticle kbArticle = fetchByC_L_Last(companyId, latest, orderByComparator);
    if (kbArticle != null) {
        return kbArticle;
    }
    StringBundler msg = new StringBundler(6);
    msg.append(_NO_SUCH_ENTITY_WITH_KEY);
    msg.append("companyId=");
    msg.append(companyId);
    msg.append(", latest=");
    msg.append(latest);
    msg.append(StringPool.CLOSE_CURLY_BRACE);
    throw new NoSuchArticleException(msg.toString());
}
Also used : KBArticle(com.liferay.knowledgebase.model.KBArticle) NoSuchArticleException(com.liferay.knowledgebase.NoSuchArticleException) StringBundler(com.liferay.portal.kernel.util.StringBundler)

Example 37 with NoSuchArticleException

use of com.liferay.knowledgebase.NoSuchArticleException in project liferay-ide by liferay.

the class KBArticlePersistenceImpl method findByG_P_S_M_PrevAndNext.

/**
 * Returns the k b articles before and after the current k b article in the ordered set where groupId = &#63; and parentResourcePrimKey = &#63; and sections LIKE &#63; and main = &#63;.
 *
 * @param kbArticleId the primary key of the current k b article
 * @param groupId the group ID
 * @param parentResourcePrimKey the parent resource prim key
 * @param sections the sections
 * @param main the main
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the previous, current, and next k b article
 * @throws com.liferay.knowledgebase.NoSuchArticleException if a k b article with the primary key could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBArticle[] findByG_P_S_M_PrevAndNext(long kbArticleId, long groupId, long parentResourcePrimKey, String sections, boolean main, OrderByComparator orderByComparator) throws NoSuchArticleException, SystemException {
    KBArticle kbArticle = findByPrimaryKey(kbArticleId);
    Session session = null;
    try {
        session = openSession();
        KBArticle[] array = new KBArticleImpl[3];
        array[0] = getByG_P_S_M_PrevAndNext(session, kbArticle, groupId, parentResourcePrimKey, sections, main, orderByComparator, true);
        array[1] = kbArticle;
        array[2] = getByG_P_S_M_PrevAndNext(session, kbArticle, groupId, parentResourcePrimKey, sections, main, orderByComparator, false);
        return array;
    } catch (Exception e) {
        throw processException(e);
    } finally {
        closeSession(session);
    }
}
Also used : KBArticle(com.liferay.knowledgebase.model.KBArticle) KBArticleImpl(com.liferay.knowledgebase.model.impl.KBArticleImpl) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArticleException(com.liferay.knowledgebase.NoSuchArticleException) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 38 with NoSuchArticleException

use of com.liferay.knowledgebase.NoSuchArticleException in project liferay-ide by liferay.

the class KBArticlePersistenceImpl method findByG_P_S_PrevAndNext.

/**
 * Returns the k b articles before and after the current k b article in the ordered set where groupId = &#63; and parentResourcePrimKey = &#63; and status = &#63;.
 *
 * @param kbArticleId the primary key of the current k b article
 * @param groupId the group ID
 * @param parentResourcePrimKey the parent resource prim key
 * @param status the status
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the previous, current, and next k b article
 * @throws com.liferay.knowledgebase.NoSuchArticleException if a k b article with the primary key could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBArticle[] findByG_P_S_PrevAndNext(long kbArticleId, long groupId, long parentResourcePrimKey, int status, OrderByComparator orderByComparator) throws NoSuchArticleException, SystemException {
    KBArticle kbArticle = findByPrimaryKey(kbArticleId);
    Session session = null;
    try {
        session = openSession();
        KBArticle[] array = new KBArticleImpl[3];
        array[0] = getByG_P_S_PrevAndNext(session, kbArticle, groupId, parentResourcePrimKey, status, orderByComparator, true);
        array[1] = kbArticle;
        array[2] = getByG_P_S_PrevAndNext(session, kbArticle, groupId, parentResourcePrimKey, status, orderByComparator, false);
        return array;
    } catch (Exception e) {
        throw processException(e);
    } finally {
        closeSession(session);
    }
}
Also used : KBArticle(com.liferay.knowledgebase.model.KBArticle) KBArticleImpl(com.liferay.knowledgebase.model.impl.KBArticleImpl) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArticleException(com.liferay.knowledgebase.NoSuchArticleException) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 39 with NoSuchArticleException

use of com.liferay.knowledgebase.NoSuchArticleException in project liferay-ide by liferay.

the class KBArticlePersistenceImpl method findByG_P_S_M_Last.

/**
 * Returns the last k b article in the ordered set where groupId = &#63; and parentResourcePrimKey = &#63; and sections LIKE &#63; and main = &#63;.
 *
 * @param groupId the group ID
 * @param parentResourcePrimKey the parent resource prim key
 * @param sections the sections
 * @param main the main
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the last matching k b article
 * @throws com.liferay.knowledgebase.NoSuchArticleException if a matching k b article could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBArticle findByG_P_S_M_Last(long groupId, long parentResourcePrimKey, String sections, boolean main, OrderByComparator orderByComparator) throws NoSuchArticleException, SystemException {
    KBArticle kbArticle = fetchByG_P_S_M_Last(groupId, parentResourcePrimKey, sections, main, orderByComparator);
    if (kbArticle != null) {
        return kbArticle;
    }
    StringBundler msg = new StringBundler(10);
    msg.append(_NO_SUCH_ENTITY_WITH_KEY);
    msg.append("groupId=");
    msg.append(groupId);
    msg.append(", parentResourcePrimKey=");
    msg.append(parentResourcePrimKey);
    msg.append(", sections=");
    msg.append(sections);
    msg.append(", main=");
    msg.append(main);
    msg.append(StringPool.CLOSE_CURLY_BRACE);
    throw new NoSuchArticleException(msg.toString());
}
Also used : KBArticle(com.liferay.knowledgebase.model.KBArticle) NoSuchArticleException(com.liferay.knowledgebase.NoSuchArticleException) StringBundler(com.liferay.portal.kernel.util.StringBundler)

Example 40 with NoSuchArticleException

use of com.liferay.knowledgebase.NoSuchArticleException in project liferay-ide by liferay.

the class KBArticlePersistenceImpl method filterFindByG_M_PrevAndNext.

/**
 * Returns the k b articles before and after the current k b article in the ordered set of k b articles that the user has permission to view where groupId = &#63; and main = &#63;.
 *
 * @param kbArticleId the primary key of the current k b article
 * @param groupId the group ID
 * @param main the main
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the previous, current, and next k b article
 * @throws com.liferay.knowledgebase.NoSuchArticleException if a k b article with the primary key could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBArticle[] filterFindByG_M_PrevAndNext(long kbArticleId, long groupId, boolean main, OrderByComparator orderByComparator) throws NoSuchArticleException, SystemException {
    if (!InlineSQLHelperUtil.isEnabled(groupId)) {
        return findByG_M_PrevAndNext(kbArticleId, groupId, main, orderByComparator);
    }
    KBArticle kbArticle = findByPrimaryKey(kbArticleId);
    Session session = null;
    try {
        session = openSession();
        KBArticle[] array = new KBArticleImpl[3];
        array[0] = filterGetByG_M_PrevAndNext(session, kbArticle, groupId, main, orderByComparator, true);
        array[1] = kbArticle;
        array[2] = filterGetByG_M_PrevAndNext(session, kbArticle, groupId, main, orderByComparator, false);
        return array;
    } catch (Exception e) {
        throw processException(e);
    } finally {
        closeSession(session);
    }
}
Also used : KBArticle(com.liferay.knowledgebase.model.KBArticle) KBArticleImpl(com.liferay.knowledgebase.model.impl.KBArticleImpl) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArticleException(com.liferay.knowledgebase.NoSuchArticleException) Session(com.liferay.portal.kernel.dao.orm.Session)

Aggregations

NoSuchArticleException (com.liferay.knowledgebase.NoSuchArticleException)111 KBArticle (com.liferay.knowledgebase.model.KBArticle)111 StringBundler (com.liferay.portal.kernel.util.StringBundler)58 SystemException (com.liferay.portal.kernel.exception.SystemException)48 KBArticleImpl (com.liferay.knowledgebase.model.impl.KBArticleImpl)45 Session (com.liferay.portal.kernel.dao.orm.Session)45 NoSuchCommentException (com.liferay.knowledgebase.NoSuchCommentException)5 NoSuchSubscriptionException (com.liferay.portal.NoSuchSubscriptionException)5 PrincipalException (com.liferay.portal.security.auth.PrincipalException)5 IOException (java.io.IOException)5 PortletException (javax.portlet.PortletException)5 PortalException (com.liferay.portal.kernel.exception.PortalException)3 KBArticleImportException (com.liferay.knowledgebase.KBArticleImportException)1 KBTemplateContentException (com.liferay.knowledgebase.KBTemplateContentException)1 KBTemplateTitleException (com.liferay.knowledgebase.KBTemplateTitleException)1 NoSuchTemplateException (com.liferay.knowledgebase.NoSuchTemplateException)1 KBTemplate (com.liferay.knowledgebase.model.KBTemplate)1 WindowStateException (javax.portlet.WindowStateException)1