1
14
15 package com.liferay.portlet.messageboards.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class MBStatsUserLocalServiceUtil {
40 public static com.liferay.portlet.messageboards.model.MBStatsUser addMBStatsUser(
41 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser)
42 throws com.liferay.portal.SystemException {
43 return getService().addMBStatsUser(mbStatsUser);
44 }
45
46 public static com.liferay.portlet.messageboards.model.MBStatsUser createMBStatsUser(
47 long statsUserId) {
48 return getService().createMBStatsUser(statsUserId);
49 }
50
51 public static void deleteMBStatsUser(long statsUserId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 getService().deleteMBStatsUser(statsUserId);
55 }
56
57 public static void deleteMBStatsUser(
58 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser)
59 throws com.liferay.portal.SystemException {
60 getService().deleteMBStatsUser(mbStatsUser);
61 }
62
63 public static java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return getService().dynamicQuery(dynamicQuery);
67 }
68
69 public static java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException {
72 return getService().dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public static com.liferay.portlet.messageboards.model.MBStatsUser getMBStatsUser(
76 long statsUserId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return getService().getMBStatsUser(statsUserId);
80 }
81
82 public static java.util.List<com.liferay.portlet.messageboards.model.MBStatsUser> getMBStatsUsers(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return getService().getMBStatsUsers(start, end);
85 }
86
87 public static int getMBStatsUsersCount()
88 throws com.liferay.portal.SystemException {
89 return getService().getMBStatsUsersCount();
90 }
91
92 public static com.liferay.portlet.messageboards.model.MBStatsUser updateMBStatsUser(
93 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser)
94 throws com.liferay.portal.SystemException {
95 return getService().updateMBStatsUser(mbStatsUser);
96 }
97
98 public static com.liferay.portlet.messageboards.model.MBStatsUser updateMBStatsUser(
99 com.liferay.portlet.messageboards.model.MBStatsUser mbStatsUser,
100 boolean merge) throws com.liferay.portal.SystemException {
101 return getService().updateMBStatsUser(mbStatsUser, merge);
102 }
103
104 public static com.liferay.portlet.messageboards.model.MBStatsUser addStatsUser(
105 long groupId, long userId) throws com.liferay.portal.SystemException {
106 return getService().addStatsUser(groupId, userId);
107 }
108
109 public static void deleteStatsUserByGroupId(long groupId)
110 throws com.liferay.portal.SystemException {
111 getService().deleteStatsUserByGroupId(groupId);
112 }
113
114 public static void deleteStatsUserByUserId(long userId)
115 throws com.liferay.portal.SystemException {
116 getService().deleteStatsUserByUserId(userId);
117 }
118
119 public static void deleteStatsUsersByGroupId(long groupId)
120 throws com.liferay.portal.SystemException {
121 getService().deleteStatsUsersByGroupId(groupId);
122 }
123
124 public static void deleteStatsUsersByUserId(long userId)
125 throws com.liferay.portal.SystemException {
126 getService().deleteStatsUsersByUserId(userId);
127 }
128
129 public static int getMessageCountByUserId(long userId)
130 throws com.liferay.portal.SystemException {
131 return getService().getMessageCountByUserId(userId);
132 }
133
134 public static com.liferay.portlet.messageboards.model.MBStatsUser getStatsUser(
135 long groupId, long userId) throws com.liferay.portal.SystemException {
136 return getService().getStatsUser(groupId, userId);
137 }
138
139 public static java.util.List<com.liferay.portlet.messageboards.model.MBStatsUser> getStatsUsers(
140 long groupId, int start, int end)
141 throws com.liferay.portal.SystemException {
142 return getService().getStatsUsers(groupId, start, end);
143 }
144
145 public static java.util.List<com.liferay.portlet.messageboards.model.MBStatsUser> getStatsUsersByGroupId(
146 long groupId, int start, int end)
147 throws com.liferay.portal.SystemException {
148 return getService().getStatsUsersByGroupId(groupId, start, end);
149 }
150
151 public static int getStatsUsersByGroupIdCount(long groupId)
152 throws com.liferay.portal.SystemException {
153 return getService().getStatsUsersByGroupIdCount(groupId);
154 }
155
156 public static java.util.List<com.liferay.portlet.messageboards.model.MBStatsUser> getStatsUsersByUserId(
157 long userId) throws com.liferay.portal.SystemException {
158 return getService().getStatsUsersByUserId(userId);
159 }
160
161 public static int getStatsUsersCount(long groupId)
162 throws com.liferay.portal.SystemException {
163 return getService().getStatsUsersCount(groupId);
164 }
165
166 public static com.liferay.portlet.messageboards.model.MBStatsUser updateStatsUser(
167 long groupId, long userId) throws com.liferay.portal.SystemException {
168 return getService().updateStatsUser(groupId, userId);
169 }
170
171 public static com.liferay.portlet.messageboards.model.MBStatsUser updateStatsUser(
172 long groupId, long userId, java.util.Date lastPostDate)
173 throws com.liferay.portal.SystemException {
174 return getService().updateStatsUser(groupId, userId, lastPostDate);
175 }
176
177 public static MBStatsUserLocalService getService() {
178 if (_service == null) {
179 _service = (MBStatsUserLocalService)PortalBeanLocatorUtil.locate(MBStatsUserLocalService.class.getName());
180 }
181
182 return _service;
183 }
184
185 public void setService(MBStatsUserLocalService service) {
186 _service = service;
187 }
188
189 private static MBStatsUserLocalService _service;
190 }