01: /**
02: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
03: *
04: * Permission is hereby granted, free of charge, to any person obtaining a copy
05: * of this software and associated documentation files (the "Software"), to deal
06: * in the Software without restriction, including without limitation the rights
07: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
08: * copies of the Software, and to permit persons to whom the Software is
09: * furnished to do so, subject to the following conditions:
10: *
11: * The above copyright notice and this permission notice shall be included in
12: * all copies or substantial portions of the Software.
13: *
14: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20: * SOFTWARE.
21: */package com.liferay.portlet.messageboards.service.persistence;
22:
23: /**
24: * <a href="MBThreadFinderUtil.java.html"><b><i>View Source</i></b></a>
25: *
26: * @author Brian Wing Shun Chan
27: *
28: */
29: public class MBThreadFinderUtil {
30: public static int countByCategoryIds(java.util.List categoryIds)
31: throws com.liferay.portal.SystemException {
32: return getFinder().countByCategoryIds(categoryIds);
33: }
34:
35: public static int countByGroupId(long groupId)
36: throws com.liferay.portal.SystemException {
37: return getFinder().countByGroupId(groupId);
38: }
39:
40: public static int countByG_U(long groupId, long userId)
41: throws com.liferay.portal.SystemException {
42: return getFinder().countByG_U(groupId, userId);
43: }
44:
45: public static int countByS_G_U(long groupId, long userId)
46: throws com.liferay.portal.SystemException {
47: return getFinder().countByS_G_U(groupId, userId);
48: }
49:
50: public static java.util.List findByGroupId(long groupId, int begin,
51: int end) throws com.liferay.portal.SystemException {
52: return getFinder().findByGroupId(groupId, begin, end);
53: }
54:
55: public static java.util.List findByG_U(long groupId, long userId,
56: int begin, int end)
57: throws com.liferay.portal.SystemException {
58: return getFinder().findByG_U(groupId, userId, begin, end);
59: }
60:
61: public static java.util.List findByS_G_U(long groupId, long userId,
62: int begin, int end)
63: throws com.liferay.portal.SystemException {
64: return getFinder().findByS_G_U(groupId, userId, begin, end);
65: }
66:
67: public static MBThreadFinder getFinder() {
68: return _getUtil()._finder;
69: }
70:
71: public void setFinder(MBThreadFinder finder) {
72: _finder = finder;
73: }
74:
75: private static MBThreadFinderUtil _getUtil() {
76: if (_util == null) {
77: _util = (MBThreadFinderUtil) com.liferay.portal.kernel.bean.BeanLocatorUtil
78: .locate(_UTIL);
79: }
80:
81: return _util;
82: }
83:
84: private static final String _UTIL = MBThreadFinderUtil.class
85: .getName();
86: private static MBThreadFinderUtil _util;
87: private MBThreadFinder _finder;
88: }
|