Search in sources :

Example 1 with NoSuchAlbumException

use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.

the class AlbumPersistenceImpl method findByUuid_C_Last.

/**
 * Returns the last album in the ordered set where uuid = ? and companyId = ?.
 *
 * @param uuid the uuid
 * @param companyId the company ID
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the last matching album
 * @throws org.liferay.jukebox.NoSuchAlbumException if a matching album could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public Album findByUuid_C_Last(String uuid, long companyId, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
    Album album = fetchByUuid_C_Last(uuid, companyId, orderByComparator);
    if (album != null) {
        return album;
    }
    StringBundler msg = new StringBundler(6);
    msg.append(_NO_SUCH_ENTITY_WITH_KEY);
    msg.append("uuid=");
    msg.append(uuid);
    msg.append(", companyId=");
    msg.append(companyId);
    msg.append(StringPool.CLOSE_CURLY_BRACE);
    throw new NoSuchAlbumException(msg.toString());
}
Also used : NoSuchAlbumException(org.liferay.jukebox.NoSuchAlbumException) Album(org.liferay.jukebox.model.Album) StringBundler(com.liferay.portal.kernel.util.StringBundler)

Example 2 with NoSuchAlbumException

use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.

the class AlbumPersistenceImpl method filterFindByG_LikeN_S_PrevAndNext.

/**
 * Returns the albums before and after the current album in the ordered set of albums that the user has permission to view where groupId = &#63; and name LIKE &#63; and status = &#63;.
 *
 * @param albumId the primary key of the current album
 * @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 album
 * @throws org.liferay.jukebox.NoSuchAlbumException if a album with the primary key could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public Album[] filterFindByG_LikeN_S_PrevAndNext(long albumId, long groupId, String name, int status, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
    if (!InlineSQLHelperUtil.isEnabled(groupId)) {
        return findByG_LikeN_S_PrevAndNext(albumId, groupId, name, status, orderByComparator);
    }
    Album album = findByPrimaryKey(albumId);
    Session session = null;
    try {
        session = openSession();
        Album[] array = new AlbumImpl[3];
        array[0] = filterGetByG_LikeN_S_PrevAndNext(session, album, groupId, name, status, orderByComparator, true);
        array[1] = album;
        array[2] = filterGetByG_LikeN_S_PrevAndNext(session, album, groupId, name, status, orderByComparator, false);
        return array;
    } catch (Exception e) {
        throw processException(e);
    } finally {
        closeSession(session);
    }
}
Also used : AlbumImpl(org.liferay.jukebox.model.impl.AlbumImpl) Album(org.liferay.jukebox.model.Album) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchAlbumException(org.liferay.jukebox.NoSuchAlbumException) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 3 with NoSuchAlbumException

use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.

the class AlbumPersistenceImpl method findByUserId_Last.

/**
 * Returns the last album in the ordered set where userId = &#63;.
 *
 * @param userId the user ID
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the last matching album
 * @throws org.liferay.jukebox.NoSuchAlbumException if a matching album could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public Album findByUserId_Last(long userId, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
    Album album = fetchByUserId_Last(userId, orderByComparator);
    if (album != null) {
        return album;
    }
    StringBundler msg = new StringBundler(4);
    msg.append(_NO_SUCH_ENTITY_WITH_KEY);
    msg.append("userId=");
    msg.append(userId);
    msg.append(StringPool.CLOSE_CURLY_BRACE);
    throw new NoSuchAlbumException(msg.toString());
}
Also used : NoSuchAlbumException(org.liferay.jukebox.NoSuchAlbumException) Album(org.liferay.jukebox.model.Album) StringBundler(com.liferay.portal.kernel.util.StringBundler)

Example 4 with NoSuchAlbumException

use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.

the class AlbumPersistenceImpl method findByG_U_PrevAndNext.

/**
 * Returns the albums before and after the current album in the ordered set where groupId = &#63; and userId = &#63;.
 *
 * @param albumId the primary key of the current album
 * @param groupId the group ID
 * @param userId the user ID
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the previous, current, and next album
 * @throws org.liferay.jukebox.NoSuchAlbumException if a album with the primary key could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public Album[] findByG_U_PrevAndNext(long albumId, long groupId, long userId, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
    Album album = findByPrimaryKey(albumId);
    Session session = null;
    try {
        session = openSession();
        Album[] array = new AlbumImpl[3];
        array[0] = getByG_U_PrevAndNext(session, album, groupId, userId, orderByComparator, true);
        array[1] = album;
        array[2] = getByG_U_PrevAndNext(session, album, groupId, userId, orderByComparator, false);
        return array;
    } catch (Exception e) {
        throw processException(e);
    } finally {
        closeSession(session);
    }
}
Also used : AlbumImpl(org.liferay.jukebox.model.impl.AlbumImpl) Album(org.liferay.jukebox.model.Album) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchAlbumException(org.liferay.jukebox.NoSuchAlbumException) Session(com.liferay.portal.kernel.dao.orm.Session)

Example 5 with NoSuchAlbumException

use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.

the class AlbumPersistenceImpl method findByArtistId_First.

/**
 * Returns the first album in the ordered set where artistId = &#63;.
 *
 * @param artistId the artist ID
 * @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
 * @return the first matching album
 * @throws org.liferay.jukebox.NoSuchAlbumException if a matching album could not be found
 * @throws SystemException if a system exception occurred
 */
@Override
public Album findByArtistId_First(long artistId, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
    Album album = fetchByArtistId_First(artistId, orderByComparator);
    if (album != null) {
        return album;
    }
    StringBundler msg = new StringBundler(4);
    msg.append(_NO_SUCH_ENTITY_WITH_KEY);
    msg.append("artistId=");
    msg.append(artistId);
    msg.append(StringPool.CLOSE_CURLY_BRACE);
    throw new NoSuchAlbumException(msg.toString());
}
Also used : NoSuchAlbumException(org.liferay.jukebox.NoSuchAlbumException) Album(org.liferay.jukebox.model.Album) StringBundler(com.liferay.portal.kernel.util.StringBundler)

Aggregations

NoSuchAlbumException (org.liferay.jukebox.NoSuchAlbumException)37 Album (org.liferay.jukebox.model.Album)37 StringBundler (com.liferay.portal.kernel.util.StringBundler)21 Session (com.liferay.portal.kernel.dao.orm.Session)16 SystemException (com.liferay.portal.kernel.exception.SystemException)16 AlbumImpl (org.liferay.jukebox.model.impl.AlbumImpl)16