1
22
23 package com.liferay.portlet.expando.service.persistence;
24
25
31 public interface ExpandoValueFinder {
32 public int countByTC_TN_CN(long classNameId, java.lang.String tableName,
33 java.lang.String columnName) throws com.liferay.portal.SystemException;
34
35 public int countByTC_TN_C(long classNameId, java.lang.String tableName,
36 long classPK) throws com.liferay.portal.SystemException;
37
38 public int countByTC_TN_CN_D(long classNameId, java.lang.String tableName,
39 java.lang.String columnName, java.lang.String data)
40 throws com.liferay.portal.SystemException;
41
42 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTC_TN_CN(
43 long classNameId, java.lang.String tableName,
44 java.lang.String columnName, int start, int end)
45 throws com.liferay.portal.SystemException;
46
47 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTC_TN_C(
48 long classNameId, java.lang.String tableName, long classPK, int start,
49 int end) throws com.liferay.portal.SystemException;
50
51 public com.liferay.portlet.expando.model.ExpandoValue fetchByTC_TN_CN_C(
52 long classNameId, java.lang.String tableName,
53 java.lang.String columnName, long classPK)
54 throws com.liferay.portal.SystemException;
55
56 public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> findByTC_TN_CN_D(
57 long classNameId, java.lang.String tableName,
58 java.lang.String columnName, java.lang.String data, int start, int end)
59 throws com.liferay.portal.SystemException;
60 }