001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
033 public class TeamLocalServiceUtil {
034
039
040
047 public static com.liferay.portal.model.Team addTeam(
048 com.liferay.portal.model.Team team)
049 throws com.liferay.portal.kernel.exception.SystemException {
050 return getService().addTeam(team);
051 }
052
053
059 public static com.liferay.portal.model.Team createTeam(long teamId) {
060 return getService().createTeam(teamId);
061 }
062
063
071 public static com.liferay.portal.model.Team deleteTeam(long teamId)
072 throws com.liferay.portal.kernel.exception.PortalException,
073 com.liferay.portal.kernel.exception.SystemException {
074 return getService().deleteTeam(teamId);
075 }
076
077
085 public static com.liferay.portal.model.Team deleteTeam(
086 com.liferay.portal.model.Team team)
087 throws com.liferay.portal.kernel.exception.PortalException,
088 com.liferay.portal.kernel.exception.SystemException {
089 return getService().deleteTeam(team);
090 }
091
092 public static com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
093 return getService().dynamicQuery();
094 }
095
096
103 @SuppressWarnings("rawtypes")
104 public static java.util.List dynamicQuery(
105 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return getService().dynamicQuery(dynamicQuery);
108 }
109
110
123 @SuppressWarnings("rawtypes")
124 public static java.util.List dynamicQuery(
125 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126 int end) throws com.liferay.portal.kernel.exception.SystemException {
127 return getService().dynamicQuery(dynamicQuery, start, end);
128 }
129
130
144 @SuppressWarnings("rawtypes")
145 public static java.util.List dynamicQuery(
146 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
147 int end,
148 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return getService()
151 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
152 }
153
154
161 public static long dynamicQueryCount(
162 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
163 throws com.liferay.portal.kernel.exception.SystemException {
164 return getService().dynamicQueryCount(dynamicQuery);
165 }
166
167 public static com.liferay.portal.model.Team fetchTeam(long teamId)
168 throws com.liferay.portal.kernel.exception.SystemException {
169 return getService().fetchTeam(teamId);
170 }
171
172
180 public static com.liferay.portal.model.Team getTeam(long teamId)
181 throws com.liferay.portal.kernel.exception.PortalException,
182 com.liferay.portal.kernel.exception.SystemException {
183 return getService().getTeam(teamId);
184 }
185
186 public static com.liferay.portal.model.PersistedModel getPersistedModel(
187 java.io.Serializable primaryKeyObj)
188 throws com.liferay.portal.kernel.exception.PortalException,
189 com.liferay.portal.kernel.exception.SystemException {
190 return getService().getPersistedModel(primaryKeyObj);
191 }
192
193
205 public static java.util.List<com.liferay.portal.model.Team> getTeams(
206 int start, int end)
207 throws com.liferay.portal.kernel.exception.SystemException {
208 return getService().getTeams(start, end);
209 }
210
211
217 public static int getTeamsCount()
218 throws com.liferay.portal.kernel.exception.SystemException {
219 return getService().getTeamsCount();
220 }
221
222
229 public static com.liferay.portal.model.Team updateTeam(
230 com.liferay.portal.model.Team team)
231 throws com.liferay.portal.kernel.exception.SystemException {
232 return getService().updateTeam(team);
233 }
234
235
243 public static com.liferay.portal.model.Team updateTeam(
244 com.liferay.portal.model.Team team, boolean merge)
245 throws com.liferay.portal.kernel.exception.SystemException {
246 return getService().updateTeam(team, merge);
247 }
248
249
254 public static java.lang.String getBeanIdentifier() {
255 return getService().getBeanIdentifier();
256 }
257
258
263 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
264 getService().setBeanIdentifier(beanIdentifier);
265 }
266
267 public static com.liferay.portal.model.Team addTeam(long userId,
268 long groupId, java.lang.String name, java.lang.String description)
269 throws com.liferay.portal.kernel.exception.PortalException,
270 com.liferay.portal.kernel.exception.SystemException {
271 return getService().addTeam(userId, groupId, name, description);
272 }
273
274 public static void deleteTeams(long groupId)
275 throws com.liferay.portal.kernel.exception.PortalException,
276 com.liferay.portal.kernel.exception.SystemException {
277 getService().deleteTeams(groupId);
278 }
279
280 public static java.util.List<com.liferay.portal.model.Team> getGroupTeams(
281 long groupId)
282 throws com.liferay.portal.kernel.exception.SystemException {
283 return getService().getGroupTeams(groupId);
284 }
285
286 public static com.liferay.portal.model.Team getTeam(long groupId,
287 java.lang.String name)
288 throws com.liferay.portal.kernel.exception.PortalException,
289 com.liferay.portal.kernel.exception.SystemException {
290 return getService().getTeam(groupId, name);
291 }
292
293 public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
294 long userId) throws com.liferay.portal.kernel.exception.SystemException {
295 return getService().getUserTeams(userId);
296 }
297
298 public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
299 long userId, long groupId)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 return getService().getUserTeams(userId, groupId);
302 }
303
304 public static boolean hasUserTeam(long userId, long teamId)
305 throws com.liferay.portal.kernel.exception.SystemException {
306 return getService().hasUserTeam(userId, teamId);
307 }
308
309 public static java.util.List<com.liferay.portal.model.Team> search(
310 long groupId, java.lang.String name, java.lang.String description,
311 java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
312 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
313 throws com.liferay.portal.kernel.exception.SystemException {
314 return getService()
315 .search(groupId, name, description, params, start, end, obc);
316 }
317
318 public static int searchCount(long groupId, java.lang.String name,
319 java.lang.String description,
320 java.util.LinkedHashMap<java.lang.String, java.lang.Object> params)
321 throws com.liferay.portal.kernel.exception.SystemException {
322 return getService().searchCount(groupId, name, description, params);
323 }
324
325 public static com.liferay.portal.model.Team updateTeam(long teamId,
326 java.lang.String name, java.lang.String description)
327 throws com.liferay.portal.kernel.exception.PortalException,
328 com.liferay.portal.kernel.exception.SystemException {
329 return getService().updateTeam(teamId, name, description);
330 }
331
332 public static TeamLocalService getService() {
333 if (_service == null) {
334 _service = (TeamLocalService)PortalBeanLocatorUtil.locate(TeamLocalService.class.getName());
335
336 ReferenceRegistry.registerReference(TeamLocalServiceUtil.class,
337 "_service");
338 }
339
340 return _service;
341 }
342
343
346 public void setService(TeamLocalService service) {
347 }
348
349 private static TeamLocalService _service;
350 }