use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.
the class AlbumPersistenceImpl method findByArtistId_Last.
/**
* Returns the last album in the ordered set where artistId = ?.
*
* @param artistId the artist 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 findByArtistId_Last(long artistId, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
Album album = fetchByArtistId_Last(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());
}
use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.
the class AlbumPersistenceImpl method findByCompanyId_Last.
/**
* Returns the last album in the ordered set where companyId = ?.
*
* @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 findByCompanyId_Last(long companyId, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
Album album = fetchByCompanyId_Last(companyId, orderByComparator);
if (album != null) {
return album;
}
StringBundler msg = new StringBundler(4);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("companyId=");
msg.append(companyId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchAlbumException(msg.toString());
}
use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.
the class AlbumPersistenceImpl method filterFindByG_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 = ? and status = ?.
*
* @param albumId the primary key of the current album
* @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 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_S_PrevAndNext(long albumId, long groupId, int status, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
if (!InlineSQLHelperUtil.isEnabled(groupId)) {
return findByG_S_PrevAndNext(albumId, groupId, status, orderByComparator);
}
Album album = findByPrimaryKey(albumId);
Session session = null;
try {
session = openSession();
Album[] array = new AlbumImpl[3];
array[0] = filterGetByG_S_PrevAndNext(session, album, groupId, status, orderByComparator, true);
array[1] = album;
array[2] = filterGetByG_S_PrevAndNext(session, album, groupId, status, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.
the class AlbumPersistenceImpl method findByG_S_Last.
/**
* Returns the last album in the ordered set where groupId = ? and status = ?.
*
* @param groupId the group ID
* @param status the status
* @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 findByG_S_Last(long groupId, int status, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
Album album = fetchByG_S_Last(groupId, status, orderByComparator);
if (album != null) {
return album;
}
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("groupId=");
msg.append(groupId);
msg.append(", status=");
msg.append(status);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchAlbumException(msg.toString());
}
use of org.liferay.jukebox.NoSuchAlbumException in project liferay-ide by liferay.
the class AlbumPersistenceImpl method findByUuid_PrevAndNext.
/**
* Returns the albums before and after the current album in the ordered set where uuid = ?.
*
* @param albumId the primary key of the current album
* @param uuid the uuid
* @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[] findByUuid_PrevAndNext(long albumId, String uuid, OrderByComparator orderByComparator) throws NoSuchAlbumException, SystemException {
Album album = findByPrimaryKey(albumId);
Session session = null;
try {
session = openSession();
Album[] array = new AlbumImpl[3];
array[0] = getByUuid_PrevAndNext(session, album, uuid, orderByComparator, true);
array[1] = album;
array[2] = getByUuid_PrevAndNext(session, album, uuid, orderByComparator, false);
return array;
} catch (Exception e) {
throw processException(e);
} finally {
closeSession(session);
}
}
Aggregations