use of org.liferay.jukebox.model.impl.SongImpl in project liferay-ide by liferay.
the class SongPersistenceImpl method findByCompanyId_PrevAndNext.
/**
* Returns the songs before and after the current song in the ordered set where companyId = ?.
*
* @param songId the primary key of the current song
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next song
* @throws org.liferay.jukebox.NoSuchSongException if a song with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Song[] findByCompanyId_PrevAndNext(long songId, long companyId, OrderByComparator orderByComparator) throws NoSuchSongException, SystemException {
Song song = findByPrimaryKey(songId);
Session session = null;
try {
session = openSession();
Song[] array = new SongImpl[3];
array[0] = getByCompanyId_PrevAndNext(session, song, companyId, orderByComparator, true);
array[1] = song;
array[2] = getByCompanyId_PrevAndNext(session, song, companyId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.model.impl.SongImpl in project liferay-ide by liferay.
the class SongPersistenceImpl method filterFindByG_S_PrevAndNext.
/**
* Returns the songs before and after the current song in the ordered set of songs that the user has permission to view where groupId = ? and status = ?.
*
* @param songId the primary key of the current song
* @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 song
* @throws org.liferay.jukebox.NoSuchSongException if a song with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Song[] filterFindByG_S_PrevAndNext(long songId, long groupId, int status, OrderByComparator orderByComparator) throws NoSuchSongException, SystemException {
if (!InlineSQLHelperUtil.isEnabled(groupId)) {
return findByG_S_PrevAndNext(songId, groupId, status, orderByComparator);
}
Song song = findByPrimaryKey(songId);
Session session = null;
try {
session = openSession();
Song[] array = new SongImpl[3];
array[0] = filterGetByG_S_PrevAndNext(session, song, groupId, status, orderByComparator, true);
array[1] = song;
array[2] = filterGetByG_S_PrevAndNext(session, song, groupId, status, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.model.impl.SongImpl in project liferay-ide by liferay.
the class SongPersistenceImpl method findByAlbumId_PrevAndNext.
/**
* Returns the songs before and after the current song in the ordered set where albumId = ?.
*
* @param songId the primary key of the current song
* @param albumId the album ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the previous, current, and next song
* @throws org.liferay.jukebox.NoSuchSongException if a song with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
@Override
public Song[] findByAlbumId_PrevAndNext(long songId, long albumId, OrderByComparator orderByComparator) throws NoSuchSongException, SystemException {
Song song = findByPrimaryKey(songId);
Session session = null;
try {
session = openSession();
Song[] array = new SongImpl[3];
array[0] = getByAlbumId_PrevAndNext(session, song, albumId, orderByComparator, true);
array[1] = song;
array[2] = getByAlbumId_PrevAndNext(session, song, albumId, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
Aggregations