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