use of org.liferay.jukebox.NoSuchArtistException in project liferay-ide by liferay.
the class ArtistPersistenceImpl method findByUserId_PrevAndNext.
/**
* Returns the artists before and after the current artist in the ordered set where userId = ?.
*
* @param artistId the primary key of the current artist
* @param userId the user ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next artist
* @throws org.liferay.jukebox.NoSuchArtistException if a artist with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Artist[] findByUserId_PrevAndNext(long artistId, long userId, OrderByComparator orderByComparator) throws NoSuchArtistException, SystemException {
Artist artist = findByPrimaryKey(artistId);
Session session = null;
try {
session = openSession();
Artist[] array = new ArtistImpl[3];
array[0] = getByUserId_PrevAndNext(session, artist, userId, orderByComparator, true);
array[1] = artist;
array[2] = getByUserId_PrevAndNext(session, artist, userId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.NoSuchArtistException in project liferay-ide by liferay.
the class ArtistPersistenceImpl method findByUuid_PrevAndNext.
/**
* Returns the artists before and after the current artist in the ordered set where uuid = ?.
*
* @param artistId the primary key of the current artist
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next artist
* @throws org.liferay.jukebox.NoSuchArtistException if a artist with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Artist[] findByUuid_PrevAndNext(long artistId, String uuid, OrderByComparator orderByComparator) throws NoSuchArtistException, SystemException {
Artist artist = findByPrimaryKey(artistId);
Session session = null;
try {
session = openSession();
Artist[] array = new ArtistImpl[3];
array[0] = getByUuid_PrevAndNext(session, artist, uuid, orderByComparator, true);
array[1] = artist;
array[2] = getByUuid_PrevAndNext(session, artist, uuid, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.NoSuchArtistException in project liferay-ide by liferay.
the class ArtistPersistenceImpl method findByGroupId_PrevAndNext.
/**
* Returns the artists before and after the current artist in the ordered set where groupId = ?.
*
* @param artistId the primary key of the current artist
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next artist
* @throws org.liferay.jukebox.NoSuchArtistException if a artist with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Artist[] findByGroupId_PrevAndNext(long artistId, long groupId, OrderByComparator orderByComparator) throws NoSuchArtistException, SystemException {
Artist artist = findByPrimaryKey(artistId);
Session session = null;
try {
session = openSession();
Artist[] array = new ArtistImpl[3];
array[0] = getByGroupId_PrevAndNext(session, artist, groupId, orderByComparator, true);
array[1] = artist;
array[2] = getByGroupId_PrevAndNext(session, artist, groupId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.NoSuchArtistException in project liferay-ide by liferay.
the class ArtistPersistenceImpl method filterFindByU_G_PrevAndNext.
/**
* Returns the artists before and after the current artist in the ordered set of artists that the user has permission to view where userId = ? and groupId = ?.
*
* @param artistId the primary key of the current artist
* @param userId the user ID
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next artist
* @throws org.liferay.jukebox.NoSuchArtistException if a artist with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Artist[] filterFindByU_G_PrevAndNext(long artistId, long userId, long groupId, OrderByComparator orderByComparator) throws NoSuchArtistException, SystemException {
if (!InlineSQLHelperUtil.isEnabled(groupId)) {
return findByU_G_PrevAndNext(artistId, userId, groupId, orderByComparator);
}
Artist artist = findByPrimaryKey(artistId);
Session session = null;
try {
session = openSession();
Artist[] array = new ArtistImpl[3];
array[0] = filterGetByU_G_PrevAndNext(session, artist, userId, groupId, orderByComparator, true);
array[1] = artist;
array[2] = filterGetByU_G_PrevAndNext(session, artist, userId, groupId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.NoSuchArtistException in project liferay-ide by liferay.
the class ArtistPersistenceImpl method findByG_S_PrevAndNext.
/**
* Returns the artists before and after the current artist in the ordered set where groupId = ? and status = ?.
*
* @param artistId the primary key of the current artist
* @param groupId the group ID
* @param status the status
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next artist
* @throws org.liferay.jukebox.NoSuchArtistException if a artist with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Artist[] findByG_S_PrevAndNext(long artistId, long groupId, int status, OrderByComparator orderByComparator) throws NoSuchArtistException, SystemException {
Artist artist = findByPrimaryKey(artistId);
Session session = null;
try {
session = openSession();
Artist[] array = new ArtistImpl[3];
array[0] = getByG_S_PrevAndNext(session, artist, groupId, status, orderByComparator, true);
array[1] = artist;
array[2] = getByG_S_PrevAndNext(session, artist, groupId, status, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
Aggregations