Search in sources :

Example 1 with ArtistImpl

use of org.liferay.jukebox.model.impl.ArtistImpl in project liferay-ide by liferay.

the class ArtistPersistenceImpl method filterFindByG_LikeN_S_PrevAndNext.

/**
 * Returns the artists before and after the current artist in the ordered set of artists that the user has permission to view where groupId = ? and name LIKE ? and status = ?.
 *
 * @param artistId the primary key of the current artist
 * @param groupId the group ID
 * @param name the name
 * @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[] filterFindByG_LikeN_S_PrevAndNext(long artistId, long groupId, String name, int status, OrderByComparator orderByComparator) throws NoSuchArtistException, SystemException {
    if (!InlineSQLHelperUtil.isEnabled(groupId)) {
        return findByG_LikeN_S_PrevAndNext(artistId, groupId, name, status, orderByComparator);
    }
    Artist artist = findByPrimaryKey(artistId);
    Session session = null;
    try {
        session = openSession();
        Artist[] array = new ArtistImpl[3];
        array[0] = filterGetByG_LikeN_S_PrevAndNext(session, artist, groupId, name, status, orderByComparator, true);
        array[1] = artist;
        array[2] = filterGetByG_LikeN_S_PrevAndNext(session, artist, groupId, name, 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)

Example 2 with ArtistImpl

use of org.liferay.jukebox.model.impl.ArtistImpl in project liferay-ide by liferay.

the class ArtistPersistenceImpl method create.

/**
 * Creates a new artist with the primary key. Does not add the artist to the database.
 *
 * @param artistId the primary key for the new artist
 * @return the new artist
 */
@Override
public Artist create(long artistId) {
    Artist artist = new ArtistImpl();
    artist.setNew(true);
    artist.setPrimaryKey(artistId);
    String uuid = PortalUUIDUtil.generate();
    artist.setUuid(uuid);
    return artist;
}
Also used : Artist(org.liferay.jukebox.model.Artist) ArtistImpl(org.liferay.jukebox.model.impl.ArtistImpl)

Example 3 with ArtistImpl

use of org.liferay.jukebox.model.impl.ArtistImpl 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 = &#63;.
 *
 * @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 4 with ArtistImpl

use of org.liferay.jukebox.model.impl.ArtistImpl 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 5 with ArtistImpl

use of org.liferay.jukebox.model.impl.ArtistImpl 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)

Aggregations

ArtistImpl (org.liferay.jukebox.model.impl.ArtistImpl)14 Artist (org.liferay.jukebox.model.Artist)13 Session (com.liferay.portal.kernel.dao.orm.Session)12 SystemException (com.liferay.portal.kernel.exception.SystemException)12 NoSuchArtistException (org.liferay.jukebox.NoSuchArtistException)12