1
14
15 package com.liferay.portlet.shopping.service.persistence;
16
17
22 public interface ShoppingItemFinder {
23 public int countByG_C(long groupId, java.util.List<Long> categoryIds)
24 throws com.liferay.portal.kernel.exception.SystemException;
25
26 public int countByFeatured(long groupId, long[] categoryIds)
27 throws com.liferay.portal.kernel.exception.SystemException;
28
29 public int countByKeywords(long groupId, long[] categoryIds,
30 java.lang.String keywords)
31 throws com.liferay.portal.kernel.exception.SystemException;
32
33 public int countBySale(long groupId, long[] categoryIds)
34 throws com.liferay.portal.kernel.exception.SystemException;
35
36 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> findByFeatured(
37 long groupId, long[] categoryIds, int numOfItems)
38 throws com.liferay.portal.kernel.exception.SystemException;
39
40 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> findByKeywords(
41 long groupId, long[] categoryIds, java.lang.String keywords, int start,
42 int end) throws com.liferay.portal.kernel.exception.SystemException;
43
44 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItem> findBySale(
45 long groupId, long[] categoryIds, int numOfItems)
46 throws com.liferay.portal.kernel.exception.SystemException;
47 }