1
14
15 package com.liferay.portlet.asset.service.persistence;
16
17
22 public interface AssetCategoryFinder {
23 public int countByG_C_N(long groupId, long classNameId,
24 java.lang.String name)
25 throws com.liferay.portal.kernel.exception.SystemException;
26
27 public int countByG_N_P(long groupId, java.lang.String name,
28 java.lang.String[] categoryProperties)
29 throws com.liferay.portal.kernel.exception.SystemException;
30
31 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> findByEntryId(
32 long entryId)
33 throws com.liferay.portal.kernel.exception.SystemException;
34
35 public com.liferay.portlet.asset.model.AssetCategory findByG_N(
36 long groupId, java.lang.String name)
37 throws com.liferay.portal.kernel.exception.SystemException,
38 com.liferay.portlet.asset.NoSuchCategoryException;
39
40 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> findByC_C(
41 long classNameId, long classPK)
42 throws com.liferay.portal.kernel.exception.SystemException;
43
44 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> findByG_N_P(
45 long groupId, java.lang.String name,
46 java.lang.String[] categoryProperties)
47 throws com.liferay.portal.kernel.exception.SystemException;
48
49 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> findByG_N_P(
50 long groupId, java.lang.String name,
51 java.lang.String[] categoryProperties, int start, int end)
52 throws com.liferay.portal.kernel.exception.SystemException;
53 }