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