001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    /**
020     * Provides a wrapper for {@link TeamLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see TeamLocalService
024     * @generated
025     */
026    @ProviderType
027    public class TeamLocalServiceWrapper implements TeamLocalService,
028            ServiceWrapper<TeamLocalService> {
029            public TeamLocalServiceWrapper(TeamLocalService teamLocalService) {
030                    _teamLocalService = teamLocalService;
031            }
032    
033            /**
034            * Adds the team to the database. Also notifies the appropriate model listeners.
035            *
036            * @param team the team
037            * @return the team that was added
038            * @throws SystemException if a system exception occurred
039            */
040            @Override
041            public com.liferay.portal.model.Team addTeam(
042                    com.liferay.portal.model.Team team)
043                    throws com.liferay.portal.kernel.exception.SystemException {
044                    return _teamLocalService.addTeam(team);
045            }
046    
047            /**
048            * Creates a new team with the primary key. Does not add the team to the database.
049            *
050            * @param teamId the primary key for the new team
051            * @return the new team
052            */
053            @Override
054            public com.liferay.portal.model.Team createTeam(long teamId) {
055                    return _teamLocalService.createTeam(teamId);
056            }
057    
058            /**
059            * Deletes the team with the primary key from the database. Also notifies the appropriate model listeners.
060            *
061            * @param teamId the primary key of the team
062            * @return the team that was removed
063            * @throws PortalException if a team with the primary key could not be found
064            * @throws SystemException if a system exception occurred
065            */
066            @Override
067            public com.liferay.portal.model.Team deleteTeam(long teamId)
068                    throws com.liferay.portal.kernel.exception.PortalException,
069                            com.liferay.portal.kernel.exception.SystemException {
070                    return _teamLocalService.deleteTeam(teamId);
071            }
072    
073            /**
074            * Deletes the team from the database. Also notifies the appropriate model listeners.
075            *
076            * @param team the team
077            * @return the team that was removed
078            * @throws PortalException
079            * @throws SystemException if a system exception occurred
080            */
081            @Override
082            public com.liferay.portal.model.Team deleteTeam(
083                    com.liferay.portal.model.Team team)
084                    throws com.liferay.portal.kernel.exception.PortalException,
085                            com.liferay.portal.kernel.exception.SystemException {
086                    return _teamLocalService.deleteTeam(team);
087            }
088    
089            @Override
090            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
091                    return _teamLocalService.dynamicQuery();
092            }
093    
094            /**
095            * Performs a dynamic query on the database and returns the matching rows.
096            *
097            * @param dynamicQuery the dynamic query
098            * @return the matching rows
099            * @throws SystemException if a system exception occurred
100            */
101            @Override
102            @SuppressWarnings("rawtypes")
103            public java.util.List dynamicQuery(
104                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
105                    throws com.liferay.portal.kernel.exception.SystemException {
106                    return _teamLocalService.dynamicQuery(dynamicQuery);
107            }
108    
109            /**
110            * Performs a dynamic query on the database and returns a range of the matching rows.
111            *
112            * <p>
113            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.TeamModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
114            * </p>
115            *
116            * @param dynamicQuery the dynamic query
117            * @param start the lower bound of the range of model instances
118            * @param end the upper bound of the range of model instances (not inclusive)
119            * @return the range of matching rows
120            * @throws SystemException if a system exception occurred
121            */
122            @Override
123            @SuppressWarnings("rawtypes")
124            public 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 _teamLocalService.dynamicQuery(dynamicQuery, start, end);
128            }
129    
130            /**
131            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
132            *
133            * <p>
134            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.TeamModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
135            * </p>
136            *
137            * @param dynamicQuery the dynamic query
138            * @param start the lower bound of the range of model instances
139            * @param end the upper bound of the range of model instances (not inclusive)
140            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
141            * @return the ordered range of matching rows
142            * @throws SystemException if a system exception occurred
143            */
144            @Override
145            @SuppressWarnings("rawtypes")
146            public java.util.List dynamicQuery(
147                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148                    int end,
149                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150                    throws com.liferay.portal.kernel.exception.SystemException {
151                    return _teamLocalService.dynamicQuery(dynamicQuery, start, end,
152                            orderByComparator);
153            }
154    
155            /**
156            * Returns the number of rows that match the dynamic query.
157            *
158            * @param dynamicQuery the dynamic query
159            * @return the number of rows that match the dynamic query
160            * @throws SystemException if a system exception occurred
161            */
162            @Override
163            public long dynamicQueryCount(
164                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165                    throws com.liferay.portal.kernel.exception.SystemException {
166                    return _teamLocalService.dynamicQueryCount(dynamicQuery);
167            }
168    
169            /**
170            * Returns the number of rows that match the dynamic query.
171            *
172            * @param dynamicQuery the dynamic query
173            * @param projection the projection to apply to the query
174            * @return the number of rows that match the dynamic query
175            * @throws SystemException if a system exception occurred
176            */
177            @Override
178            public long dynamicQueryCount(
179                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180                    com.liferay.portal.kernel.dao.orm.Projection projection)
181                    throws com.liferay.portal.kernel.exception.SystemException {
182                    return _teamLocalService.dynamicQueryCount(dynamicQuery, projection);
183            }
184    
185            @Override
186            public com.liferay.portal.model.Team fetchTeam(long teamId)
187                    throws com.liferay.portal.kernel.exception.SystemException {
188                    return _teamLocalService.fetchTeam(teamId);
189            }
190    
191            /**
192            * Returns the team with the primary key.
193            *
194            * @param teamId the primary key of the team
195            * @return the team
196            * @throws PortalException if a team with the primary key could not be found
197            * @throws SystemException if a system exception occurred
198            */
199            @Override
200            public com.liferay.portal.model.Team getTeam(long teamId)
201                    throws com.liferay.portal.kernel.exception.PortalException,
202                            com.liferay.portal.kernel.exception.SystemException {
203                    return _teamLocalService.getTeam(teamId);
204            }
205    
206            @Override
207            public com.liferay.portal.model.PersistedModel getPersistedModel(
208                    java.io.Serializable primaryKeyObj)
209                    throws com.liferay.portal.kernel.exception.PortalException,
210                            com.liferay.portal.kernel.exception.SystemException {
211                    return _teamLocalService.getPersistedModel(primaryKeyObj);
212            }
213    
214            /**
215            * Returns a range of all the teams.
216            *
217            * <p>
218            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.TeamModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
219            * </p>
220            *
221            * @param start the lower bound of the range of teams
222            * @param end the upper bound of the range of teams (not inclusive)
223            * @return the range of teams
224            * @throws SystemException if a system exception occurred
225            */
226            @Override
227            public java.util.List<com.liferay.portal.model.Team> getTeams(int start,
228                    int end) throws com.liferay.portal.kernel.exception.SystemException {
229                    return _teamLocalService.getTeams(start, end);
230            }
231    
232            /**
233            * Returns the number of teams.
234            *
235            * @return the number of teams
236            * @throws SystemException if a system exception occurred
237            */
238            @Override
239            public int getTeamsCount()
240                    throws com.liferay.portal.kernel.exception.SystemException {
241                    return _teamLocalService.getTeamsCount();
242            }
243    
244            /**
245            * Updates the team in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
246            *
247            * @param team the team
248            * @return the team that was updated
249            * @throws SystemException if a system exception occurred
250            */
251            @Override
252            public com.liferay.portal.model.Team updateTeam(
253                    com.liferay.portal.model.Team team)
254                    throws com.liferay.portal.kernel.exception.SystemException {
255                    return _teamLocalService.updateTeam(team);
256            }
257    
258            /**
259            * @throws SystemException if a system exception occurred
260            */
261            @Override
262            public void addUserTeam(long userId, long teamId)
263                    throws com.liferay.portal.kernel.exception.SystemException {
264                    _teamLocalService.addUserTeam(userId, teamId);
265            }
266    
267            /**
268            * @throws SystemException if a system exception occurred
269            */
270            @Override
271            public void addUserTeam(long userId, com.liferay.portal.model.Team team)
272                    throws com.liferay.portal.kernel.exception.SystemException {
273                    _teamLocalService.addUserTeam(userId, team);
274            }
275    
276            /**
277            * @throws SystemException if a system exception occurred
278            */
279            @Override
280            public void addUserTeams(long userId, long[] teamIds)
281                    throws com.liferay.portal.kernel.exception.SystemException {
282                    _teamLocalService.addUserTeams(userId, teamIds);
283            }
284    
285            /**
286            * @throws SystemException if a system exception occurred
287            */
288            @Override
289            public void addUserTeams(long userId,
290                    java.util.List<com.liferay.portal.model.Team> Teams)
291                    throws com.liferay.portal.kernel.exception.SystemException {
292                    _teamLocalService.addUserTeams(userId, Teams);
293            }
294    
295            /**
296            * @throws SystemException if a system exception occurred
297            */
298            @Override
299            public void clearUserTeams(long userId)
300                    throws com.liferay.portal.kernel.exception.SystemException {
301                    _teamLocalService.clearUserTeams(userId);
302            }
303    
304            /**
305            * @throws SystemException if a system exception occurred
306            */
307            @Override
308            public void deleteUserTeam(long userId, long teamId)
309                    throws com.liferay.portal.kernel.exception.SystemException {
310                    _teamLocalService.deleteUserTeam(userId, teamId);
311            }
312    
313            /**
314            * @throws SystemException if a system exception occurred
315            */
316            @Override
317            public void deleteUserTeam(long userId, com.liferay.portal.model.Team team)
318                    throws com.liferay.portal.kernel.exception.SystemException {
319                    _teamLocalService.deleteUserTeam(userId, team);
320            }
321    
322            /**
323            * @throws SystemException if a system exception occurred
324            */
325            @Override
326            public void deleteUserTeams(long userId, long[] teamIds)
327                    throws com.liferay.portal.kernel.exception.SystemException {
328                    _teamLocalService.deleteUserTeams(userId, teamIds);
329            }
330    
331            /**
332            * @throws SystemException if a system exception occurred
333            */
334            @Override
335            public void deleteUserTeams(long userId,
336                    java.util.List<com.liferay.portal.model.Team> Teams)
337                    throws com.liferay.portal.kernel.exception.SystemException {
338                    _teamLocalService.deleteUserTeams(userId, Teams);
339            }
340    
341            /**
342            * @throws SystemException if a system exception occurred
343            */
344            @Override
345            public java.util.List<com.liferay.portal.model.Team> getUserTeams(
346                    long userId) throws com.liferay.portal.kernel.exception.SystemException {
347                    return _teamLocalService.getUserTeams(userId);
348            }
349    
350            /**
351            * @throws SystemException if a system exception occurred
352            */
353            @Override
354            public java.util.List<com.liferay.portal.model.Team> getUserTeams(
355                    long userId, int start, int end)
356                    throws com.liferay.portal.kernel.exception.SystemException {
357                    return _teamLocalService.getUserTeams(userId, start, end);
358            }
359    
360            /**
361            * @throws SystemException if a system exception occurred
362            */
363            @Override
364            public java.util.List<com.liferay.portal.model.Team> getUserTeams(
365                    long userId, int start, int end,
366                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
367                    throws com.liferay.portal.kernel.exception.SystemException {
368                    return _teamLocalService.getUserTeams(userId, start, end,
369                            orderByComparator);
370            }
371    
372            /**
373            * @throws SystemException if a system exception occurred
374            */
375            @Override
376            public int getUserTeamsCount(long userId)
377                    throws com.liferay.portal.kernel.exception.SystemException {
378                    return _teamLocalService.getUserTeamsCount(userId);
379            }
380    
381            /**
382            * @throws SystemException if a system exception occurred
383            */
384            @Override
385            public boolean hasUserTeam(long userId, long teamId)
386                    throws com.liferay.portal.kernel.exception.SystemException {
387                    return _teamLocalService.hasUserTeam(userId, teamId);
388            }
389    
390            /**
391            * @throws SystemException if a system exception occurred
392            */
393            @Override
394            public boolean hasUserTeams(long userId)
395                    throws com.liferay.portal.kernel.exception.SystemException {
396                    return _teamLocalService.hasUserTeams(userId);
397            }
398    
399            /**
400            * @throws SystemException if a system exception occurred
401            */
402            @Override
403            public void setUserTeams(long userId, long[] teamIds)
404                    throws com.liferay.portal.kernel.exception.SystemException {
405                    _teamLocalService.setUserTeams(userId, teamIds);
406            }
407    
408            /**
409            * @throws SystemException if a system exception occurred
410            */
411            @Override
412            public void addUserGroupTeam(long userGroupId, long teamId)
413                    throws com.liferay.portal.kernel.exception.SystemException {
414                    _teamLocalService.addUserGroupTeam(userGroupId, teamId);
415            }
416    
417            /**
418            * @throws SystemException if a system exception occurred
419            */
420            @Override
421            public void addUserGroupTeam(long userGroupId,
422                    com.liferay.portal.model.Team team)
423                    throws com.liferay.portal.kernel.exception.SystemException {
424                    _teamLocalService.addUserGroupTeam(userGroupId, team);
425            }
426    
427            /**
428            * @throws SystemException if a system exception occurred
429            */
430            @Override
431            public void addUserGroupTeams(long userGroupId, long[] teamIds)
432                    throws com.liferay.portal.kernel.exception.SystemException {
433                    _teamLocalService.addUserGroupTeams(userGroupId, teamIds);
434            }
435    
436            /**
437            * @throws SystemException if a system exception occurred
438            */
439            @Override
440            public void addUserGroupTeams(long userGroupId,
441                    java.util.List<com.liferay.portal.model.Team> Teams)
442                    throws com.liferay.portal.kernel.exception.SystemException {
443                    _teamLocalService.addUserGroupTeams(userGroupId, Teams);
444            }
445    
446            /**
447            * @throws SystemException if a system exception occurred
448            */
449            @Override
450            public void clearUserGroupTeams(long userGroupId)
451                    throws com.liferay.portal.kernel.exception.SystemException {
452                    _teamLocalService.clearUserGroupTeams(userGroupId);
453            }
454    
455            /**
456            * @throws SystemException if a system exception occurred
457            */
458            @Override
459            public void deleteUserGroupTeam(long userGroupId, long teamId)
460                    throws com.liferay.portal.kernel.exception.SystemException {
461                    _teamLocalService.deleteUserGroupTeam(userGroupId, teamId);
462            }
463    
464            /**
465            * @throws SystemException if a system exception occurred
466            */
467            @Override
468            public void deleteUserGroupTeam(long userGroupId,
469                    com.liferay.portal.model.Team team)
470                    throws com.liferay.portal.kernel.exception.SystemException {
471                    _teamLocalService.deleteUserGroupTeam(userGroupId, team);
472            }
473    
474            /**
475            * @throws SystemException if a system exception occurred
476            */
477            @Override
478            public void deleteUserGroupTeams(long userGroupId, long[] teamIds)
479                    throws com.liferay.portal.kernel.exception.SystemException {
480                    _teamLocalService.deleteUserGroupTeams(userGroupId, teamIds);
481            }
482    
483            /**
484            * @throws SystemException if a system exception occurred
485            */
486            @Override
487            public void deleteUserGroupTeams(long userGroupId,
488                    java.util.List<com.liferay.portal.model.Team> Teams)
489                    throws com.liferay.portal.kernel.exception.SystemException {
490                    _teamLocalService.deleteUserGroupTeams(userGroupId, Teams);
491            }
492    
493            /**
494            * @throws SystemException if a system exception occurred
495            */
496            @Override
497            public java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
498                    long userGroupId)
499                    throws com.liferay.portal.kernel.exception.SystemException {
500                    return _teamLocalService.getUserGroupTeams(userGroupId);
501            }
502    
503            /**
504            * @throws SystemException if a system exception occurred
505            */
506            @Override
507            public java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
508                    long userGroupId, int start, int end)
509                    throws com.liferay.portal.kernel.exception.SystemException {
510                    return _teamLocalService.getUserGroupTeams(userGroupId, start, end);
511            }
512    
513            /**
514            * @throws SystemException if a system exception occurred
515            */
516            @Override
517            public java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
518                    long userGroupId, int start, int end,
519                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
520                    throws com.liferay.portal.kernel.exception.SystemException {
521                    return _teamLocalService.getUserGroupTeams(userGroupId, start, end,
522                            orderByComparator);
523            }
524    
525            /**
526            * @throws SystemException if a system exception occurred
527            */
528            @Override
529            public int getUserGroupTeamsCount(long userGroupId)
530                    throws com.liferay.portal.kernel.exception.SystemException {
531                    return _teamLocalService.getUserGroupTeamsCount(userGroupId);
532            }
533    
534            /**
535            * @throws SystemException if a system exception occurred
536            */
537            @Override
538            public boolean hasUserGroupTeam(long userGroupId, long teamId)
539                    throws com.liferay.portal.kernel.exception.SystemException {
540                    return _teamLocalService.hasUserGroupTeam(userGroupId, teamId);
541            }
542    
543            /**
544            * @throws SystemException if a system exception occurred
545            */
546            @Override
547            public boolean hasUserGroupTeams(long userGroupId)
548                    throws com.liferay.portal.kernel.exception.SystemException {
549                    return _teamLocalService.hasUserGroupTeams(userGroupId);
550            }
551    
552            /**
553            * @throws SystemException if a system exception occurred
554            */
555            @Override
556            public void setUserGroupTeams(long userGroupId, long[] teamIds)
557                    throws com.liferay.portal.kernel.exception.SystemException {
558                    _teamLocalService.setUserGroupTeams(userGroupId, teamIds);
559            }
560    
561            /**
562            * Returns the Spring bean ID for this bean.
563            *
564            * @return the Spring bean ID for this bean
565            */
566            @Override
567            public java.lang.String getBeanIdentifier() {
568                    return _teamLocalService.getBeanIdentifier();
569            }
570    
571            /**
572            * Sets the Spring bean ID for this bean.
573            *
574            * @param beanIdentifier the Spring bean ID for this bean
575            */
576            @Override
577            public void setBeanIdentifier(java.lang.String beanIdentifier) {
578                    _teamLocalService.setBeanIdentifier(beanIdentifier);
579            }
580    
581            @Override
582            public com.liferay.portal.model.Team addTeam(long userId, long groupId,
583                    java.lang.String name, java.lang.String description)
584                    throws com.liferay.portal.kernel.exception.PortalException,
585                            com.liferay.portal.kernel.exception.SystemException {
586                    return _teamLocalService.addTeam(userId, groupId, name, description);
587            }
588    
589            @Override
590            public void deleteTeams(long groupId)
591                    throws com.liferay.portal.kernel.exception.PortalException,
592                            com.liferay.portal.kernel.exception.SystemException {
593                    _teamLocalService.deleteTeams(groupId);
594            }
595    
596            @Override
597            public java.util.List<com.liferay.portal.model.Team> getGroupTeams(
598                    long groupId)
599                    throws com.liferay.portal.kernel.exception.SystemException {
600                    return _teamLocalService.getGroupTeams(groupId);
601            }
602    
603            @Override
604            public com.liferay.portal.model.Team getTeam(long groupId,
605                    java.lang.String name)
606                    throws com.liferay.portal.kernel.exception.PortalException,
607                            com.liferay.portal.kernel.exception.SystemException {
608                    return _teamLocalService.getTeam(groupId, name);
609            }
610    
611            @Override
612            public java.util.List<com.liferay.portal.model.Team> getUserTeams(
613                    long userId, long groupId)
614                    throws com.liferay.portal.kernel.exception.SystemException {
615                    return _teamLocalService.getUserTeams(userId, groupId);
616            }
617    
618            @Override
619            public java.util.List<com.liferay.portal.model.Team> search(long groupId,
620                    java.lang.String name, java.lang.String description,
621                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
622                    int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
623                    throws com.liferay.portal.kernel.exception.SystemException {
624                    return _teamLocalService.search(groupId, name, description, params,
625                            start, end, obc);
626            }
627    
628            @Override
629            public int searchCount(long groupId, java.lang.String name,
630                    java.lang.String description,
631                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params)
632                    throws com.liferay.portal.kernel.exception.SystemException {
633                    return _teamLocalService.searchCount(groupId, name, description, params);
634            }
635    
636            @Override
637            public com.liferay.portal.model.Team updateTeam(long teamId,
638                    java.lang.String name, java.lang.String description)
639                    throws com.liferay.portal.kernel.exception.PortalException,
640                            com.liferay.portal.kernel.exception.SystemException {
641                    return _teamLocalService.updateTeam(teamId, name, description);
642            }
643    
644            /**
645             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
646             */
647            public TeamLocalService getWrappedTeamLocalService() {
648                    return _teamLocalService;
649            }
650    
651            /**
652             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
653             */
654            public void setWrappedTeamLocalService(TeamLocalService teamLocalService) {
655                    _teamLocalService = teamLocalService;
656            }
657    
658            @Override
659            public TeamLocalService getWrappedService() {
660                    return _teamLocalService;
661            }
662    
663            @Override
664            public void setWrappedService(TeamLocalService teamLocalService) {
665                    _teamLocalService = teamLocalService;
666            }
667    
668            private TeamLocalService _teamLocalService;
669    }