use of com.liferay.portlet.wiki.NoSuchNodeException in project liferay-ide by liferay.
the class WikiNodePersistenceImpl method findByCompanyId_Last.
/**
* Returns the last wiki node in the ordered set where companyId = ?.
*
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the last matching wiki node
* @throws com.liferay.portlet.wiki.NoSuchNodeException if a matching wiki node could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public WikiNode findByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws NoSuchNodeException, SystemException {
WikiNode wikiNode = fetchByCompanyId_Last(companyId, orderByComparator);
if (wikiNode != null) {
return wikiNode;
}
StringBundler msg = new StringBundler(4);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("companyId=");
msg.append(companyId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchNodeException(msg.toString());
}
use of com.liferay.portlet.wiki.NoSuchNodeException in project liferay-ide by liferay.
the class WikiNodePersistenceImpl method findByG_N.
/**
* Returns the wiki node where groupId = ? and name = ? or throws a {@link com.liferay.portlet.wiki.NoSuchNodeException} if it could not be found.
*
* @param groupId the group ID
* @param name the name
* @return the matching wiki node
* @throws com.liferay.portlet.wiki.NoSuchNodeException if a matching wiki node could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public WikiNode findByG_N(long groupId, String name) throws NoSuchNodeException, SystemException {
WikiNode wikiNode = fetchByG_N(groupId, name);
if (wikiNode == null) {
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("groupId=");
msg.append(groupId);
msg.append(", name=");
msg.append(name);
msg.append(StringPool.CLOSE_CURLY_BRACE);
if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
}
throw new NoSuchNodeException(msg.toString());
}
return wikiNode;
}
use of com.liferay.portlet.wiki.NoSuchNodeException in project liferay-ide by liferay.
the class WikiNodePersistenceImpl method findByCompanyId_PrevAndNext.
/**
* Returns the wiki nodes before and after the current wiki node in the ordered set where companyId = ?.
*
* @param nodeId the primary key of the current wiki node
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next wiki node
* @throws com.liferay.portlet.wiki.NoSuchNodeException if a wiki node with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public WikiNode[] findByCompanyId_PrevAndNext(long nodeId, long companyId, OrderByComparator orderByComparator) throws NoSuchNodeException, SystemException {
WikiNode wikiNode = findByPrimaryKey(nodeId);
Session session = null;
try {
session = openSession();
WikiNode[] array = new WikiNodeImpl[3];
array[0] = getByCompanyId_PrevAndNext(session, wikiNode, companyId, orderByComparator, true);
array[1] = wikiNode;
array[2] = getByCompanyId_PrevAndNext(session, wikiNode, companyId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of com.liferay.portlet.wiki.NoSuchNodeException in project liferay-ide by liferay.
the class WikiNodePersistenceImpl method findByGroupId_PrevAndNext.
/**
* Returns the wiki nodes before and after the current wiki node in the ordered set where groupId = ?.
*
* @param nodeId the primary key of the current wiki node
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next wiki node
* @throws com.liferay.portlet.wiki.NoSuchNodeException if a wiki node with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public WikiNode[] findByGroupId_PrevAndNext(long nodeId, long groupId, OrderByComparator orderByComparator) throws NoSuchNodeException, SystemException {
WikiNode wikiNode = findByPrimaryKey(nodeId);
Session session = null;
try {
session = openSession();
WikiNode[] array = new WikiNodeImpl[3];
array[0] = getByGroupId_PrevAndNext(session, wikiNode, groupId, orderByComparator, true);
array[1] = wikiNode;
array[2] = getByGroupId_PrevAndNext(session, wikiNode, groupId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of com.liferay.portlet.wiki.NoSuchNodeException in project liferay-ide by liferay.
the class WikiNodePersistenceImpl method remove.
/**
* Removes the wiki node with the primary key from the database. Also notifies the appropriate model listeners.
*
* @param primaryKey the primary key of the wiki node
* @return the wiki node that was removed
* @throws com.liferay.portlet.wiki.NoSuchNodeException if a wiki node with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public WikiNode remove(Serializable primaryKey) throws NoSuchNodeException, SystemException {
Session session = null;
try {
session = openSession();
WikiNode wikiNode = (WikiNode) session.get(WikiNodeImpl.class, primaryKey);
if (wikiNode == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}
throw new NoSuchNodeException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}
return remove(wikiNode);
} catch (NoSuchNodeException nsee) {
throw nsee;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
Aggregations