Search in sources :

Example 6 with KBTemplate

use of com.liferay.knowledgebase.model.KBTemplate in project liferay-ide by liferay.

the class KBTemplateExportActionableDynamicQuery method performAction.

@Override
@SuppressWarnings("unused")
protected void performAction(Object object) throws PortalException, SystemException {
    KBTemplate stagedModel = (KBTemplate) object;
    StagedModelDataHandlerUtil.exportStagedModel(_portletDataContext, stagedModel);
}
Also used : KBTemplate(com.liferay.knowledgebase.model.KBTemplate)

Example 7 with KBTemplate

use of com.liferay.knowledgebase.model.KBTemplate in project liferay-ide by liferay.

the class KBTemplatePersistenceImpl method findByUuid_C_PrevAndNext.

/**
 * Returns the k b templates before and after the current k b template in the ordered set where uuid = ? and companyId = ?.
 *
 * @param kbTemplateId the primary key of the current k b template
 * @param uuid the uuid
 * @param companyId the company ID
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the previous, current, and next k b template
 * @throws com.liferay.knowledgebase.NoSuchTemplateException if a k b template with the primary key could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBTemplate[] findByUuid_C_PrevAndNext(long kbTemplateId, String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchTemplateException, SystemException {
    KBTemplate kbTemplate = findByPrimaryKey(kbTemplateId);
    Session session = null;
    try {
        session = openSession();
        KBTemplate[] array = new KBTemplateImpl[3];
        array[0] = getByUuid_C_PrevAndNext(session, kbTemplate, uuid, companyId, orderByComparator, true);
        array[1] = kbTemplate;
        array[2] = getByUuid_C_PrevAndNext(session, kbTemplate, uuid, companyId, orderByComparator, false);
        return array;
    } catch (Exception e) {
        throw processException(e);
    } finally {
        closeSession(session);
    }
}
Also used : KBTemplateImpl(com.liferay.knowledgebase.model.impl.KBTemplateImpl) KBTemplate(com.liferay.knowledgebase.model.KBTemplate) NoSuchTemplateException(com.liferay.knowledgebase.NoSuchTemplateException) SystemException(com.liferay.portal.kernel.exception.SystemException) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 8 with KBTemplate

use of com.liferay.knowledgebase.model.KBTemplate in project liferay-ide by liferay.

the class KBTemplatePersistenceImpl method findByUuid_C.

/**
 * Returns an ordered range of all the k b templates where uuid = &#63; and companyId = &#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.KBTemplateModelImpl}. 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 k b templates
 * @param end the upper bound of the range of k b templates (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching k b templates
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBTemplate> 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<KBTemplate> list = (List<KBTemplate>) FinderCacheUtil.getResult(finderPath, finderArgs, this);
    if ((list != null) && !list.isEmpty()) {
        for (KBTemplate kbTemplate : list) {
            if (!Validator.equals(uuid, kbTemplate.getUuid()) || (companyId != kbTemplate.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_KBTEMPLATE_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(KBTemplateModelImpl.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<KBTemplate>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBTemplate>(list);
            } else {
                list = (List<KBTemplate>) 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) KBTemplate(com.liferay.knowledgebase.model.KBTemplate) StringBundler(com.liferay.portal.kernel.util.StringBundler) NoSuchTemplateException(com.liferay.knowledgebase.NoSuchTemplateException) SystemException(com.liferay.portal.kernel.exception.SystemException) 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 9 with KBTemplate

use of com.liferay.knowledgebase.model.KBTemplate in project liferay-ide by liferay.

the class KBTemplatePersistenceImpl method findByGroupId.

/**
 * Returns an ordered range of all the k b templates where groupId = &#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.KBTemplateModelImpl}. 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 k b templates
 * @param end the upper bound of the range of k b templates (not inclusive)
 * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
 * @return the ordered range of matching k b templates
 * @throws SystemException if a system exception occurred
 */
@Override
public List<KBTemplate> 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<KBTemplate> list = (List<KBTemplate>) FinderCacheUtil.getResult(finderPath, finderArgs, this);
    if ((list != null) && !list.isEmpty()) {
        for (KBTemplate kbTemplate : list) {
            if ((groupId != kbTemplate.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_KBTEMPLATE_WHERE);
        query.append(_FINDER_COLUMN_GROUPID_GROUPID_2);
        if (orderByComparator != null) {
            appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
        } else if (pagination) {
            query.append(KBTemplateModelImpl.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<KBTemplate>) QueryUtil.list(q, getDialect(), start, end, false);
                Collections.sort(list);
                list = new UnmodifiableList<KBTemplate>(list);
            } else {
                list = (List<KBTemplate>) 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) KBTemplate(com.liferay.knowledgebase.model.KBTemplate) StringBundler(com.liferay.portal.kernel.util.StringBundler) NoSuchTemplateException(com.liferay.knowledgebase.NoSuchTemplateException) SystemException(com.liferay.portal.kernel.exception.SystemException) 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 10 with KBTemplate

use of com.liferay.knowledgebase.model.KBTemplate in project liferay-ide by liferay.

the class KBTemplatePersistenceImpl method findByGroupId_Last.

/**
 * Returns the last k b template in the ordered set where groupId = &#63;.
 *
 * @param groupId the group ID
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the last matching k b template
 * @throws com.liferay.knowledgebase.NoSuchTemplateException if a matching k b template could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public KBTemplate findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws NoSuchTemplateException, SystemException {
    KBTemplate kbTemplate = fetchByGroupId_Last(groupId, orderByComparator);
    if (kbTemplate != null) {
        return kbTemplate;
    }
    StringBundler msg = new StringBundler(4);
    msg.append(_NO_SUCH_ENTITY_WITH_KEY);
    msg.append("groupId=");
    msg.append(groupId);
    msg.append(StringPool.CLOSE_CURLY_BRACE);
    throw new NoSuchTemplateException(msg.toString());
}
Also used : NoSuchTemplateException(com.liferay.knowledgebase.NoSuchTemplateException) KBTemplate(com.liferay.knowledgebase.model.KBTemplate) StringBundler(com.liferay.portal.kernel.util.StringBundler)

Aggregations

KBTemplate (com.liferay.knowledgebase.model.KBTemplate)40 NoSuchTemplateException (com.liferay.knowledgebase.NoSuchTemplateException)21 StringBundler (com.liferay.portal.kernel.util.StringBundler)17 SystemException (com.liferay.portal.kernel.exception.SystemException)14 Session (com.liferay.portal.kernel.dao.orm.Session)12 SQLQuery (com.liferay.portal.kernel.dao.orm.SQLQuery)10 QueryPos (com.liferay.portal.kernel.dao.orm.QueryPos)9 Query (com.liferay.portal.kernel.dao.orm.Query)8 KBTemplateImpl (com.liferay.knowledgebase.model.impl.KBTemplateImpl)7 ArrayList (java.util.ArrayList)7 UnmodifiableList (com.liferay.portal.kernel.util.UnmodifiableList)6 List (java.util.List)6 FinderPath (com.liferay.portal.kernel.dao.orm.FinderPath)4 KBArticle (com.liferay.knowledgebase.model.KBArticle)3 PortalException (com.liferay.portal.kernel.exception.PortalException)2 JSONObject (com.liferay.portal.kernel.json.JSONObject)2 KBArticleImportException (com.liferay.knowledgebase.KBArticleImportException)1 KBCommentContentException (com.liferay.knowledgebase.KBCommentContentException)1 KBTemplateContentException (com.liferay.knowledgebase.KBTemplateContentException)1 KBTemplateTitleException (com.liferay.knowledgebase.KBTemplateTitleException)1