Search in sources :

Example 6 with NoSuchArtistException

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);
    }
}
Also used : Artist(org.liferay.jukebox.model.Artist) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArtistException(org.liferay.jukebox.NoSuchArtistException) Session(com.liferay.portal.kernel.dao.orm.Session) ArtistImpl(org.liferay.jukebox.model.impl.ArtistImpl)

Example 7 with NoSuchArtistException

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 = &#63;.
 *
 * @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);
    }
}
Also used : Artist(org.liferay.jukebox.model.Artist) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArtistException(org.liferay.jukebox.NoSuchArtistException) Session(com.liferay.portal.kernel.dao.orm.Session) ArtistImpl(org.liferay.jukebox.model.impl.ArtistImpl)

Example 8 with NoSuchArtistException

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 = &#63;.
 *
 * @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);
    }
}
Also used : Artist(org.liferay.jukebox.model.Artist) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArtistException(org.liferay.jukebox.NoSuchArtistException) Session(com.liferay.portal.kernel.dao.orm.Session) ArtistImpl(org.liferay.jukebox.model.impl.ArtistImpl)

Example 9 with NoSuchArtistException

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 = &#63; and groupId = &#63;.
 *
 * @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);
    }
}
Also used : Artist(org.liferay.jukebox.model.Artist) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArtistException(org.liferay.jukebox.NoSuchArtistException) Session(com.liferay.portal.kernel.dao.orm.Session) ArtistImpl(org.liferay.jukebox.model.impl.ArtistImpl)

Example 10 with NoSuchArtistException

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 = &#63; and status = &#63;.
 *
 * @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);
    }
}
Also used : Artist(org.liferay.jukebox.model.Artist) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchArtistException(org.liferay.jukebox.NoSuchArtistException) Session(com.liferay.portal.kernel.dao.orm.Session) ArtistImpl(org.liferay.jukebox.model.impl.ArtistImpl)

Aggregations

NoSuchArtistException (org.liferay.jukebox.NoSuchArtistException)30 Artist (org.liferay.jukebox.model.Artist)30 StringBundler (com.liferay.portal.kernel.util.StringBundler)17 Session (com.liferay.portal.kernel.dao.orm.Session)13 SystemException (com.liferay.portal.kernel.exception.SystemException)13 ArtistImpl (org.liferay.jukebox.model.impl.ArtistImpl)13