001
014
015 package com.liferay.portlet.imagegallery.service.persistence;
016
017
020 public interface IGImageFinder {
021 public com.liferay.portlet.imagegallery.model.IGImage fetchByAnyImageId(
022 long imageId)
023 throws com.liferay.portal.kernel.exception.SystemException;
024
025 public com.liferay.portlet.imagegallery.model.IGImage findByAnyImageId(
026 long imageId)
027 throws com.liferay.portal.kernel.exception.SystemException,
028 com.liferay.portlet.imagegallery.NoSuchImageException;
029
030 public java.util.List<com.liferay.portlet.imagegallery.model.IGImage> findByNoAssets()
031 throws com.liferay.portal.kernel.exception.SystemException;
032 }