1
22
23 package com.liferay.portlet.expando.service.persistence;
24
25
31 public class ExpandoColumnFinderUtil {
32 public static int countByTC_TN(long classNameId, java.lang.String tableName)
33 throws com.liferay.portal.SystemException {
34 return getFinder().countByTC_TN(classNameId, tableName);
35 }
36
37 public static java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> findByTC_TN(
38 long classNameId, java.lang.String tableName)
39 throws com.liferay.portal.SystemException {
40 return getFinder().findByTC_TN(classNameId, tableName);
41 }
42
43 public static com.liferay.portlet.expando.model.ExpandoColumn findByTC_TN_CN(
44 long classNameId, java.lang.String tableName, java.lang.String name)
45 throws com.liferay.portal.SystemException {
46 return getFinder().findByTC_TN_CN(classNameId, tableName, name);
47 }
48
49 public static ExpandoColumnFinder getFinder() {
50 return _getUtil()._finder;
51 }
52
53 public void setFinder(ExpandoColumnFinder finder) {
54 _finder = finder;
55 }
56
57 private static ExpandoColumnFinderUtil _getUtil() {
58 if (_util == null) {
59 _util = (ExpandoColumnFinderUtil)com.liferay.portal.kernel.bean.BeanLocatorUtil.locate(_UTIL);
60 }
61
62 return _util;
63 }
64
65 private static final String _UTIL = ExpandoColumnFinderUtil.class.getName();
66 private static ExpandoColumnFinderUtil _util;
67 private ExpandoColumnFinder _finder;
68 }