1
14
15 package com.liferay.portlet.imagegallery.service.persistence;
16
17
22 public interface IGImageFinder {
23 public int countByFolderIds(java.util.List<java.lang.Long> folderIds)
24 throws com.liferay.portal.SystemException;
25
26 public com.liferay.portlet.imagegallery.model.IGImage fetchByAnyImageId(
27 long imageId) throws com.liferay.portal.SystemException;
28
29 public com.liferay.portlet.imagegallery.model.IGImage findByAnyImageId(
30 long imageId)
31 throws com.liferay.portal.SystemException,
32 com.liferay.portlet.imagegallery.NoSuchImageException;
33
34 public java.util.List<com.liferay.portlet.imagegallery.model.IGImage> findByNoAssets()
35 throws com.liferay.portal.SystemException;
36 }