001
014
015 package com.liferay.portlet.asset.service.persistence;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
022 @ProviderType
023 public interface AssetCategoryFinder {
024 public int countByG_C_N(long groupId, long classNameId,
025 java.lang.String name);
026
027 public int countByG_N_P(long groupId, java.lang.String name,
028 java.lang.String[] categoryProperties);
029
030 public com.liferay.portlet.asset.model.AssetCategory findByG_N(
031 long groupId, java.lang.String name)
032 throws com.liferay.portlet.asset.NoSuchCategoryException;
033
034 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> findByG_N_P(
035 long groupId, java.lang.String name,
036 java.lang.String[] categoryProperties);
037
038 public java.util.List<com.liferay.portlet.asset.model.AssetCategory> findByG_N_P(
039 long groupId, java.lang.String name,
040 java.lang.String[] categoryProperties, int start, int end);
041 }