001
014
015 package com.liferay.portlet.asset.service.persistence;
016
017
020 public interface AssetTagFinder {
021 public int countByG_C_N(long groupId, long classNameId,
022 java.lang.String name)
023 throws com.liferay.portal.kernel.exception.SystemException;
024
025 public int countByG_N_P(long groupId, java.lang.String name,
026 java.lang.String[] tagProperties)
027 throws com.liferay.portal.kernel.exception.SystemException;
028
029 public int filterCountByG_N(long groupId, java.lang.String name)
030 throws com.liferay.portal.kernel.exception.SystemException;
031
032 public int filterCountByG_C_N(long groupId, long classNameId,
033 java.lang.String name)
034 throws com.liferay.portal.kernel.exception.SystemException;
035
036 public int filterCountByG_N_P(long groupId, java.lang.String name,
037 java.lang.String[] tagProperties)
038 throws com.liferay.portal.kernel.exception.SystemException;
039
040 public com.liferay.portlet.asset.model.AssetTag filterFindByG_N(
041 long groupId, java.lang.String name)
042 throws com.liferay.portal.kernel.exception.SystemException,
043 com.liferay.portlet.asset.NoSuchTagException;
044
045 public java.util.List<com.liferay.portlet.asset.model.AssetTag> filterFindByG_C_N(
046 long groupId, long classNameId, java.lang.String name, int start,
047 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
048 throws com.liferay.portal.kernel.exception.SystemException;
049
050 public java.util.List<com.liferay.portlet.asset.model.AssetTag> filterFindByG_N_P(
051 long[] groupIds, java.lang.String name,
052 java.lang.String[] tagProperties, int start, int end,
053 com.liferay.portal.kernel.util.OrderByComparator obc)
054 throws com.liferay.portal.kernel.exception.SystemException;
055
056 public java.util.List<com.liferay.portlet.asset.model.AssetTag> findByEntryId(
057 long entryId)
058 throws com.liferay.portal.kernel.exception.SystemException;
059
060 public com.liferay.portlet.asset.model.AssetTag findByG_N(long groupId,
061 java.lang.String name)
062 throws com.liferay.portal.kernel.exception.SystemException,
063 com.liferay.portlet.asset.NoSuchTagException;
064
065 public java.util.List<com.liferay.portlet.asset.model.AssetTag> findByC_C(
066 long classNameId, long classPK)
067 throws com.liferay.portal.kernel.exception.SystemException;
068
069 public java.util.List<com.liferay.portlet.asset.model.AssetTag> findByG_C_N(
070 long groupId, long classNameId, java.lang.String name, int start,
071 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
072 throws com.liferay.portal.kernel.exception.SystemException;
073
074 public java.util.List<com.liferay.portlet.asset.model.AssetTag> findByG_N_P(
075 long[] groupIds, java.lang.String name,
076 java.lang.String[] tagProperties, int start, int end,
077 com.liferay.portal.kernel.util.OrderByComparator obc)
078 throws com.liferay.portal.kernel.exception.SystemException;
079
080 public java.util.List<com.liferay.portlet.asset.model.AssetTag> findByG_N_S_E(
081 long groupId, java.lang.String name, int startPeriod, int endPeriod,
082 int periodLength)
083 throws com.liferay.portal.kernel.exception.SystemException;
084 }