001
014
015 package com.liferay.portal.service;
016
017
026 public class TeamLocalServiceWrapper implements TeamLocalService,
027 ServiceWrapper<TeamLocalService> {
028 public TeamLocalServiceWrapper(TeamLocalService teamLocalService) {
029 _teamLocalService = teamLocalService;
030 }
031
032
039 public com.liferay.portal.model.Team addTeam(
040 com.liferay.portal.model.Team team)
041 throws com.liferay.portal.kernel.exception.SystemException {
042 return _teamLocalService.addTeam(team);
043 }
044
045
051 public com.liferay.portal.model.Team createTeam(long teamId) {
052 return _teamLocalService.createTeam(teamId);
053 }
054
055
063 public com.liferay.portal.model.Team deleteTeam(long teamId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 return _teamLocalService.deleteTeam(teamId);
067 }
068
069
077 public com.liferay.portal.model.Team deleteTeam(
078 com.liferay.portal.model.Team team)
079 throws com.liferay.portal.kernel.exception.PortalException,
080 com.liferay.portal.kernel.exception.SystemException {
081 return _teamLocalService.deleteTeam(team);
082 }
083
084 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
085 return _teamLocalService.dynamicQuery();
086 }
087
088
095 @SuppressWarnings("rawtypes")
096 public java.util.List dynamicQuery(
097 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
098 throws com.liferay.portal.kernel.exception.SystemException {
099 return _teamLocalService.dynamicQuery(dynamicQuery);
100 }
101
102
115 @SuppressWarnings("rawtypes")
116 public java.util.List dynamicQuery(
117 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
118 int end) throws com.liferay.portal.kernel.exception.SystemException {
119 return _teamLocalService.dynamicQuery(dynamicQuery, start, end);
120 }
121
122
136 @SuppressWarnings("rawtypes")
137 public java.util.List dynamicQuery(
138 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
139 int end,
140 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
141 throws com.liferay.portal.kernel.exception.SystemException {
142 return _teamLocalService.dynamicQuery(dynamicQuery, start, end,
143 orderByComparator);
144 }
145
146
153 public long dynamicQueryCount(
154 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
155 throws com.liferay.portal.kernel.exception.SystemException {
156 return _teamLocalService.dynamicQueryCount(dynamicQuery);
157 }
158
159 public com.liferay.portal.model.Team fetchTeam(long teamId)
160 throws com.liferay.portal.kernel.exception.SystemException {
161 return _teamLocalService.fetchTeam(teamId);
162 }
163
164
172 public com.liferay.portal.model.Team getTeam(long teamId)
173 throws com.liferay.portal.kernel.exception.PortalException,
174 com.liferay.portal.kernel.exception.SystemException {
175 return _teamLocalService.getTeam(teamId);
176 }
177
178 public com.liferay.portal.model.PersistedModel getPersistedModel(
179 java.io.Serializable primaryKeyObj)
180 throws com.liferay.portal.kernel.exception.PortalException,
181 com.liferay.portal.kernel.exception.SystemException {
182 return _teamLocalService.getPersistedModel(primaryKeyObj);
183 }
184
185
197 public java.util.List<com.liferay.portal.model.Team> getTeams(int start,
198 int end) throws com.liferay.portal.kernel.exception.SystemException {
199 return _teamLocalService.getTeams(start, end);
200 }
201
202
208 public int getTeamsCount()
209 throws com.liferay.portal.kernel.exception.SystemException {
210 return _teamLocalService.getTeamsCount();
211 }
212
213
220 public com.liferay.portal.model.Team updateTeam(
221 com.liferay.portal.model.Team team)
222 throws com.liferay.portal.kernel.exception.SystemException {
223 return _teamLocalService.updateTeam(team);
224 }
225
226
229 public void addUserTeam(long userId, long teamId)
230 throws com.liferay.portal.kernel.exception.SystemException {
231 _teamLocalService.addUserTeam(userId, teamId);
232 }
233
234
237 public void addUserTeam(long userId, com.liferay.portal.model.Team team)
238 throws com.liferay.portal.kernel.exception.SystemException {
239 _teamLocalService.addUserTeam(userId, team);
240 }
241
242
245 public void addUserTeams(long userId, long[] teamIds)
246 throws com.liferay.portal.kernel.exception.SystemException {
247 _teamLocalService.addUserTeams(userId, teamIds);
248 }
249
250
253 public void addUserTeams(long userId,
254 java.util.List<com.liferay.portal.model.Team> Teams)
255 throws com.liferay.portal.kernel.exception.SystemException {
256 _teamLocalService.addUserTeams(userId, Teams);
257 }
258
259
262 public void clearUserTeams(long userId)
263 throws com.liferay.portal.kernel.exception.SystemException {
264 _teamLocalService.clearUserTeams(userId);
265 }
266
267
270 public void deleteUserTeam(long userId, long teamId)
271 throws com.liferay.portal.kernel.exception.SystemException {
272 _teamLocalService.deleteUserTeam(userId, teamId);
273 }
274
275
278 public void deleteUserTeam(long userId, com.liferay.portal.model.Team team)
279 throws com.liferay.portal.kernel.exception.SystemException {
280 _teamLocalService.deleteUserTeam(userId, team);
281 }
282
283
286 public void deleteUserTeams(long userId, long[] teamIds)
287 throws com.liferay.portal.kernel.exception.SystemException {
288 _teamLocalService.deleteUserTeams(userId, teamIds);
289 }
290
291
294 public void deleteUserTeams(long userId,
295 java.util.List<com.liferay.portal.model.Team> Teams)
296 throws com.liferay.portal.kernel.exception.SystemException {
297 _teamLocalService.deleteUserTeams(userId, Teams);
298 }
299
300
303 public java.util.List<com.liferay.portal.model.Team> getUserTeams(
304 long userId) throws com.liferay.portal.kernel.exception.SystemException {
305 return _teamLocalService.getUserTeams(userId);
306 }
307
308
311 public java.util.List<com.liferay.portal.model.Team> getUserTeams(
312 long userId, int start, int end)
313 throws com.liferay.portal.kernel.exception.SystemException {
314 return _teamLocalService.getUserTeams(userId, start, end);
315 }
316
317
320 public java.util.List<com.liferay.portal.model.Team> getUserTeams(
321 long userId, int start, int end,
322 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
323 throws com.liferay.portal.kernel.exception.SystemException {
324 return _teamLocalService.getUserTeams(userId, start, end,
325 orderByComparator);
326 }
327
328
331 public int getUserTeamsCount(long userId)
332 throws com.liferay.portal.kernel.exception.SystemException {
333 return _teamLocalService.getUserTeamsCount(userId);
334 }
335
336
339 public boolean hasUserTeam(long userId, long teamId)
340 throws com.liferay.portal.kernel.exception.SystemException {
341 return _teamLocalService.hasUserTeam(userId, teamId);
342 }
343
344
347 public boolean hasUserTeams(long userId)
348 throws com.liferay.portal.kernel.exception.SystemException {
349 return _teamLocalService.hasUserTeams(userId);
350 }
351
352
355 public void setUserTeams(long userId, long[] teamIds)
356 throws com.liferay.portal.kernel.exception.SystemException {
357 _teamLocalService.setUserTeams(userId, teamIds);
358 }
359
360
363 public void addUserGroupTeam(long userGroupId, long teamId)
364 throws com.liferay.portal.kernel.exception.SystemException {
365 _teamLocalService.addUserGroupTeam(userGroupId, teamId);
366 }
367
368
371 public void addUserGroupTeam(long userGroupId,
372 com.liferay.portal.model.Team team)
373 throws com.liferay.portal.kernel.exception.SystemException {
374 _teamLocalService.addUserGroupTeam(userGroupId, team);
375 }
376
377
380 public void addUserGroupTeams(long userGroupId, long[] teamIds)
381 throws com.liferay.portal.kernel.exception.SystemException {
382 _teamLocalService.addUserGroupTeams(userGroupId, teamIds);
383 }
384
385
388 public void addUserGroupTeams(long userGroupId,
389 java.util.List<com.liferay.portal.model.Team> Teams)
390 throws com.liferay.portal.kernel.exception.SystemException {
391 _teamLocalService.addUserGroupTeams(userGroupId, Teams);
392 }
393
394
397 public void clearUserGroupTeams(long userGroupId)
398 throws com.liferay.portal.kernel.exception.SystemException {
399 _teamLocalService.clearUserGroupTeams(userGroupId);
400 }
401
402
405 public void deleteUserGroupTeam(long userGroupId, long teamId)
406 throws com.liferay.portal.kernel.exception.SystemException {
407 _teamLocalService.deleteUserGroupTeam(userGroupId, teamId);
408 }
409
410
413 public void deleteUserGroupTeam(long userGroupId,
414 com.liferay.portal.model.Team team)
415 throws com.liferay.portal.kernel.exception.SystemException {
416 _teamLocalService.deleteUserGroupTeam(userGroupId, team);
417 }
418
419
422 public void deleteUserGroupTeams(long userGroupId, long[] teamIds)
423 throws com.liferay.portal.kernel.exception.SystemException {
424 _teamLocalService.deleteUserGroupTeams(userGroupId, teamIds);
425 }
426
427
430 public void deleteUserGroupTeams(long userGroupId,
431 java.util.List<com.liferay.portal.model.Team> Teams)
432 throws com.liferay.portal.kernel.exception.SystemException {
433 _teamLocalService.deleteUserGroupTeams(userGroupId, Teams);
434 }
435
436
439 public java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
440 long userGroupId)
441 throws com.liferay.portal.kernel.exception.SystemException {
442 return _teamLocalService.getUserGroupTeams(userGroupId);
443 }
444
445
448 public java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
449 long userGroupId, int start, int end)
450 throws com.liferay.portal.kernel.exception.SystemException {
451 return _teamLocalService.getUserGroupTeams(userGroupId, start, end);
452 }
453
454
457 public java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
458 long userGroupId, int start, int end,
459 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
460 throws com.liferay.portal.kernel.exception.SystemException {
461 return _teamLocalService.getUserGroupTeams(userGroupId, start, end,
462 orderByComparator);
463 }
464
465
468 public int getUserGroupTeamsCount(long userGroupId)
469 throws com.liferay.portal.kernel.exception.SystemException {
470 return _teamLocalService.getUserGroupTeamsCount(userGroupId);
471 }
472
473
476 public boolean hasUserGroupTeam(long userGroupId, long teamId)
477 throws com.liferay.portal.kernel.exception.SystemException {
478 return _teamLocalService.hasUserGroupTeam(userGroupId, teamId);
479 }
480
481
484 public boolean hasUserGroupTeams(long userGroupId)
485 throws com.liferay.portal.kernel.exception.SystemException {
486 return _teamLocalService.hasUserGroupTeams(userGroupId);
487 }
488
489
492 public void setUserGroupTeams(long userGroupId, long[] teamIds)
493 throws com.liferay.portal.kernel.exception.SystemException {
494 _teamLocalService.setUserGroupTeams(userGroupId, teamIds);
495 }
496
497
502 public java.lang.String getBeanIdentifier() {
503 return _teamLocalService.getBeanIdentifier();
504 }
505
506
511 public void setBeanIdentifier(java.lang.String beanIdentifier) {
512 _teamLocalService.setBeanIdentifier(beanIdentifier);
513 }
514
515 public com.liferay.portal.model.Team addTeam(long userId, long groupId,
516 java.lang.String name, java.lang.String description)
517 throws com.liferay.portal.kernel.exception.PortalException,
518 com.liferay.portal.kernel.exception.SystemException {
519 return _teamLocalService.addTeam(userId, groupId, name, description);
520 }
521
522 public void deleteTeams(long groupId)
523 throws com.liferay.portal.kernel.exception.PortalException,
524 com.liferay.portal.kernel.exception.SystemException {
525 _teamLocalService.deleteTeams(groupId);
526 }
527
528 public java.util.List<com.liferay.portal.model.Team> getGroupTeams(
529 long groupId)
530 throws com.liferay.portal.kernel.exception.SystemException {
531 return _teamLocalService.getGroupTeams(groupId);
532 }
533
534 public com.liferay.portal.model.Team getTeam(long groupId,
535 java.lang.String name)
536 throws com.liferay.portal.kernel.exception.PortalException,
537 com.liferay.portal.kernel.exception.SystemException {
538 return _teamLocalService.getTeam(groupId, name);
539 }
540
541 public java.util.List<com.liferay.portal.model.Team> getUserTeams(
542 long userId, long groupId)
543 throws com.liferay.portal.kernel.exception.SystemException {
544 return _teamLocalService.getUserTeams(userId, groupId);
545 }
546
547 public java.util.List<com.liferay.portal.model.Team> search(long groupId,
548 java.lang.String name, java.lang.String description,
549 java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
550 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
551 throws com.liferay.portal.kernel.exception.SystemException {
552 return _teamLocalService.search(groupId, name, description, params,
553 start, end, obc);
554 }
555
556 public int searchCount(long groupId, java.lang.String name,
557 java.lang.String description,
558 java.util.LinkedHashMap<java.lang.String, java.lang.Object> params)
559 throws com.liferay.portal.kernel.exception.SystemException {
560 return _teamLocalService.searchCount(groupId, name, description, params);
561 }
562
563 public com.liferay.portal.model.Team updateTeam(long teamId,
564 java.lang.String name, java.lang.String description)
565 throws com.liferay.portal.kernel.exception.PortalException,
566 com.liferay.portal.kernel.exception.SystemException {
567 return _teamLocalService.updateTeam(teamId, name, description);
568 }
569
570
573 public TeamLocalService getWrappedTeamLocalService() {
574 return _teamLocalService;
575 }
576
577
580 public void setWrappedTeamLocalService(TeamLocalService teamLocalService) {
581 _teamLocalService = teamLocalService;
582 }
583
584 public TeamLocalService getWrappedService() {
585 return _teamLocalService;
586 }
587
588 public void setWrappedService(TeamLocalService teamLocalService) {
589 _teamLocalService = teamLocalService;
590 }
591
592 private TeamLocalService _teamLocalService;
593 }