use of com.liferay.knowledgebase.model.KBComment in project liferay-ide by liferay.
the class KBCommentPersistenceImpl method getByG_S_PrevAndNext.
protected KBComment getByG_S_PrevAndNext(Session session, KBComment kbComment, long groupId, int status, OrderByComparator orderByComparator, boolean previous) {
StringBundler query = null;
if (orderByComparator != null) {
query = new StringBundler(6 + (orderByComparator.getOrderByFields().length * 6));
} else {
query = new StringBundler(3);
}
query.append(_SQL_SELECT_KBCOMMENT_WHERE);
query.append(_FINDER_COLUMN_G_S_GROUPID_2);
query.append(_FINDER_COLUMN_G_S_STATUS_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(KBCommentModelImpl.ORDER_BY_JPQL);
}
String sql = query.toString();
Query q = session.createQuery(sql);
q.setFirstResult(0);
q.setMaxResults(2);
QueryPos qPos = QueryPos.getInstance(q);
qPos.add(groupId);
qPos.add(status);
if (orderByComparator != null) {
Object[] values = orderByComparator.getOrderByConditionValues(kbComment);
for (Object value : values) {
qPos.add(value);
}
}
List<KBComment> list = q.list();
if (list.size() == 2) {
return list.get(1);
} else {
return null;
}
}
use of com.liferay.knowledgebase.model.KBComment in project liferay-ide by liferay.
the class KBCommentPersistenceImpl method findByGroupId_Last.
/**
* Returns the last k b comment in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the last matching k b comment
* @throws com.liferay.knowledgebase.NoSuchCommentException if a matching k b comment could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public KBComment findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws NoSuchCommentException, SystemException {
KBComment kbComment = fetchByGroupId_Last(groupId, orderByComparator);
if (kbComment != null) {
return kbComment;
}
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 NoSuchCommentException(msg.toString());
}
use of com.liferay.knowledgebase.model.KBComment in project liferay-ide by liferay.
the class KBCommentPersistenceImpl method findByU_C_C_PrevAndNext.
/**
* Returns the k b comments before and after the current k b comment in the ordered set where userId = ? and classNameId = ? and classPK = ?.
*
* @param kbCommentId the primary key of the current k b comment
* @param userId the user ID
* @param classNameId the class name ID
* @param classPK the class p k
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next k b comment
* @throws com.liferay.knowledgebase.NoSuchCommentException if a k b comment with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public KBComment[] findByU_C_C_PrevAndNext(long kbCommentId, long userId, long classNameId, long classPK, OrderByComparator orderByComparator) throws NoSuchCommentException, SystemException {
KBComment kbComment = findByPrimaryKey(kbCommentId);
Session session = null;
try {
session = openSession();
KBComment[] array = new KBCommentImpl[3];
array[0] = getByU_C_C_PrevAndNext(session, kbComment, userId, classNameId, classPK, orderByComparator, true);
array[1] = kbComment;
array[2] = getByU_C_C_PrevAndNext(session, kbComment, userId, classNameId, classPK, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of com.liferay.knowledgebase.model.KBComment in project liferay-ide by liferay.
the class KBCommentPersistenceImpl method findByC_C_Last.
/**
* Returns the last k b comment in the ordered set where classNameId = ? and classPK = ?.
*
* @param classNameId the class name ID
* @param classPK the class p k
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the last matching k b comment
* @throws com.liferay.knowledgebase.NoSuchCommentException if a matching k b comment could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public KBComment findByC_C_Last(long classNameId, long classPK, OrderByComparator orderByComparator) throws NoSuchCommentException, SystemException {
KBComment kbComment = fetchByC_C_Last(classNameId, classPK, orderByComparator);
if (kbComment != null) {
return kbComment;
}
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("classNameId=");
msg.append(classNameId);
msg.append(", classPK=");
msg.append(classPK);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchCommentException(msg.toString());
}
use of com.liferay.knowledgebase.model.KBComment in project liferay-ide by liferay.
the class KBCommentPersistenceImpl method findByUuid_C_Last.
/**
* Returns the last k b comment in the ordered set where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the last matching k b comment
* @throws com.liferay.knowledgebase.NoSuchCommentException if a matching k b comment could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public KBComment findByUuid_C_Last(String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchCommentException, SystemException {
KBComment kbComment = fetchByUuid_C_Last(uuid, companyId, orderByComparator);
if (kbComment != null) {
return kbComment;
}
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(", companyId=");
msg.append(companyId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchCommentException(msg.toString());
}
Aggregations