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 com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.util.ReferenceRegistry;
019    
020    /**
021     * The utility for the team local service. This utility wraps {@link com.liferay.portal.service.impl.TeamLocalServiceImpl} and is the primary access point for service operations in application layer code running on the local server.
022     *
023     * <p>
024     * This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
025     * </p>
026     *
027     * @author Brian Wing Shun Chan
028     * @see TeamLocalService
029     * @see com.liferay.portal.service.base.TeamLocalServiceBaseImpl
030     * @see com.liferay.portal.service.impl.TeamLocalServiceImpl
031     * @generated
032     */
033    public class TeamLocalServiceUtil {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.TeamLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
038             */
039    
040            /**
041            * Adds the team to the database. Also notifies the appropriate model listeners.
042            *
043            * @param team the team
044            * @return the team that was added
045            * @throws SystemException if a system exception occurred
046            */
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            /**
054            * Creates a new team with the primary key. Does not add the team to the database.
055            *
056            * @param teamId the primary key for the new team
057            * @return the new team
058            */
059            public static com.liferay.portal.model.Team createTeam(long teamId) {
060                    return getService().createTeam(teamId);
061            }
062    
063            /**
064            * Deletes the team with the primary key from the database. Also notifies the appropriate model listeners.
065            *
066            * @param teamId the primary key of the team
067            * @return the team that was removed
068            * @throws PortalException if a team with the primary key could not be found
069            * @throws SystemException if a system exception occurred
070            */
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            /**
078            * Deletes the team from the database. Also notifies the appropriate model listeners.
079            *
080            * @param team the team
081            * @return the team that was removed
082            * @throws PortalException
083            * @throws SystemException if a system exception occurred
084            */
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            /**
097            * Performs a dynamic query on the database and returns the matching rows.
098            *
099            * @param dynamicQuery the dynamic query
100            * @return the matching rows
101            * @throws SystemException if a system exception occurred
102            */
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            /**
111            * Performs a dynamic query on the database and returns a range of the matching rows.
112            *
113            * <p>
114            * 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.
115            * </p>
116            *
117            * @param dynamicQuery the dynamic query
118            * @param start the lower bound of the range of model instances
119            * @param end the upper bound of the range of model instances (not inclusive)
120            * @return the range of matching rows
121            * @throws SystemException if a system exception occurred
122            */
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            /**
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            @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            /**
155            * Returns the number of rows that match the dynamic query.
156            *
157            * @param dynamicQuery the dynamic query
158            * @return the number of rows that match the dynamic query
159            * @throws SystemException if a system exception occurred
160            */
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            /**
173            * Returns the team with the primary key.
174            *
175            * @param teamId the primary key of the team
176            * @return the team
177            * @throws PortalException if a team with the primary key could not be found
178            * @throws SystemException if a system exception occurred
179            */
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            /**
194            * Returns a range of all the teams.
195            *
196            * <p>
197            * 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.
198            * </p>
199            *
200            * @param start the lower bound of the range of teams
201            * @param end the upper bound of the range of teams (not inclusive)
202            * @return the range of teams
203            * @throws SystemException if a system exception occurred
204            */
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            /**
212            * Returns the number of teams.
213            *
214            * @return the number of teams
215            * @throws SystemException if a system exception occurred
216            */
217            public static int getTeamsCount()
218                    throws com.liferay.portal.kernel.exception.SystemException {
219                    return getService().getTeamsCount();
220            }
221    
222            /**
223            * Updates the team in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
224            *
225            * @param team the team
226            * @return the team that was updated
227            * @throws SystemException if a system exception occurred
228            */
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            /**
236            * @throws SystemException if a system exception occurred
237            */
238            public static void addUserTeam(long userId, long teamId)
239                    throws com.liferay.portal.kernel.exception.SystemException {
240                    getService().addUserTeam(userId, teamId);
241            }
242    
243            /**
244            * @throws SystemException if a system exception occurred
245            */
246            public static void addUserTeam(long userId,
247                    com.liferay.portal.model.Team team)
248                    throws com.liferay.portal.kernel.exception.SystemException {
249                    getService().addUserTeam(userId, team);
250            }
251    
252            /**
253            * @throws SystemException if a system exception occurred
254            */
255            public static void addUserTeams(long userId, long[] teamIds)
256                    throws com.liferay.portal.kernel.exception.SystemException {
257                    getService().addUserTeams(userId, teamIds);
258            }
259    
260            /**
261            * @throws SystemException if a system exception occurred
262            */
263            public static void addUserTeams(long userId,
264                    java.util.List<com.liferay.portal.model.Team> Teams)
265                    throws com.liferay.portal.kernel.exception.SystemException {
266                    getService().addUserTeams(userId, Teams);
267            }
268    
269            /**
270            * @throws SystemException if a system exception occurred
271            */
272            public static void clearUserTeams(long userId)
273                    throws com.liferay.portal.kernel.exception.SystemException {
274                    getService().clearUserTeams(userId);
275            }
276    
277            /**
278            * @throws SystemException if a system exception occurred
279            */
280            public static void deleteUserTeam(long userId, long teamId)
281                    throws com.liferay.portal.kernel.exception.SystemException {
282                    getService().deleteUserTeam(userId, teamId);
283            }
284    
285            /**
286            * @throws SystemException if a system exception occurred
287            */
288            public static void deleteUserTeam(long userId,
289                    com.liferay.portal.model.Team team)
290                    throws com.liferay.portal.kernel.exception.SystemException {
291                    getService().deleteUserTeam(userId, team);
292            }
293    
294            /**
295            * @throws SystemException if a system exception occurred
296            */
297            public static void deleteUserTeams(long userId, long[] teamIds)
298                    throws com.liferay.portal.kernel.exception.SystemException {
299                    getService().deleteUserTeams(userId, teamIds);
300            }
301    
302            /**
303            * @throws SystemException if a system exception occurred
304            */
305            public static void deleteUserTeams(long userId,
306                    java.util.List<com.liferay.portal.model.Team> Teams)
307                    throws com.liferay.portal.kernel.exception.SystemException {
308                    getService().deleteUserTeams(userId, Teams);
309            }
310    
311            /**
312            * @throws SystemException if a system exception occurred
313            */
314            public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
315                    long userId) throws com.liferay.portal.kernel.exception.SystemException {
316                    return getService().getUserTeams(userId);
317            }
318    
319            /**
320            * @throws SystemException if a system exception occurred
321            */
322            public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
323                    long userId, int start, int end)
324                    throws com.liferay.portal.kernel.exception.SystemException {
325                    return getService().getUserTeams(userId, start, end);
326            }
327    
328            /**
329            * @throws SystemException if a system exception occurred
330            */
331            public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
332                    long userId, int start, int end,
333                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
334                    throws com.liferay.portal.kernel.exception.SystemException {
335                    return getService().getUserTeams(userId, start, end, orderByComparator);
336            }
337    
338            /**
339            * @throws SystemException if a system exception occurred
340            */
341            public static int getUserTeamsCount(long userId)
342                    throws com.liferay.portal.kernel.exception.SystemException {
343                    return getService().getUserTeamsCount(userId);
344            }
345    
346            /**
347            * @throws SystemException if a system exception occurred
348            */
349            public static boolean hasUserTeam(long userId, long teamId)
350                    throws com.liferay.portal.kernel.exception.SystemException {
351                    return getService().hasUserTeam(userId, teamId);
352            }
353    
354            /**
355            * @throws SystemException if a system exception occurred
356            */
357            public static boolean hasUserTeams(long userId)
358                    throws com.liferay.portal.kernel.exception.SystemException {
359                    return getService().hasUserTeams(userId);
360            }
361    
362            /**
363            * @throws SystemException if a system exception occurred
364            */
365            public static void setUserTeams(long userId, long[] teamIds)
366                    throws com.liferay.portal.kernel.exception.SystemException {
367                    getService().setUserTeams(userId, teamIds);
368            }
369    
370            /**
371            * @throws SystemException if a system exception occurred
372            */
373            public static void addUserGroupTeam(long userGroupId, long teamId)
374                    throws com.liferay.portal.kernel.exception.SystemException {
375                    getService().addUserGroupTeam(userGroupId, teamId);
376            }
377    
378            /**
379            * @throws SystemException if a system exception occurred
380            */
381            public static void addUserGroupTeam(long userGroupId,
382                    com.liferay.portal.model.Team team)
383                    throws com.liferay.portal.kernel.exception.SystemException {
384                    getService().addUserGroupTeam(userGroupId, team);
385            }
386    
387            /**
388            * @throws SystemException if a system exception occurred
389            */
390            public static void addUserGroupTeams(long userGroupId, long[] teamIds)
391                    throws com.liferay.portal.kernel.exception.SystemException {
392                    getService().addUserGroupTeams(userGroupId, teamIds);
393            }
394    
395            /**
396            * @throws SystemException if a system exception occurred
397            */
398            public static void addUserGroupTeams(long userGroupId,
399                    java.util.List<com.liferay.portal.model.Team> Teams)
400                    throws com.liferay.portal.kernel.exception.SystemException {
401                    getService().addUserGroupTeams(userGroupId, Teams);
402            }
403    
404            /**
405            * @throws SystemException if a system exception occurred
406            */
407            public static void clearUserGroupTeams(long userGroupId)
408                    throws com.liferay.portal.kernel.exception.SystemException {
409                    getService().clearUserGroupTeams(userGroupId);
410            }
411    
412            /**
413            * @throws SystemException if a system exception occurred
414            */
415            public static void deleteUserGroupTeam(long userGroupId, long teamId)
416                    throws com.liferay.portal.kernel.exception.SystemException {
417                    getService().deleteUserGroupTeam(userGroupId, teamId);
418            }
419    
420            /**
421            * @throws SystemException if a system exception occurred
422            */
423            public static void deleteUserGroupTeam(long userGroupId,
424                    com.liferay.portal.model.Team team)
425                    throws com.liferay.portal.kernel.exception.SystemException {
426                    getService().deleteUserGroupTeam(userGroupId, team);
427            }
428    
429            /**
430            * @throws SystemException if a system exception occurred
431            */
432            public static void deleteUserGroupTeams(long userGroupId, long[] teamIds)
433                    throws com.liferay.portal.kernel.exception.SystemException {
434                    getService().deleteUserGroupTeams(userGroupId, teamIds);
435            }
436    
437            /**
438            * @throws SystemException if a system exception occurred
439            */
440            public static void deleteUserGroupTeams(long userGroupId,
441                    java.util.List<com.liferay.portal.model.Team> Teams)
442                    throws com.liferay.portal.kernel.exception.SystemException {
443                    getService().deleteUserGroupTeams(userGroupId, Teams);
444            }
445    
446            /**
447            * @throws SystemException if a system exception occurred
448            */
449            public static java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
450                    long userGroupId)
451                    throws com.liferay.portal.kernel.exception.SystemException {
452                    return getService().getUserGroupTeams(userGroupId);
453            }
454    
455            /**
456            * @throws SystemException if a system exception occurred
457            */
458            public static java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
459                    long userGroupId, int start, int end)
460                    throws com.liferay.portal.kernel.exception.SystemException {
461                    return getService().getUserGroupTeams(userGroupId, start, end);
462            }
463    
464            /**
465            * @throws SystemException if a system exception occurred
466            */
467            public static java.util.List<com.liferay.portal.model.Team> getUserGroupTeams(
468                    long userGroupId, int start, int end,
469                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
470                    throws com.liferay.portal.kernel.exception.SystemException {
471                    return getService()
472                                       .getUserGroupTeams(userGroupId, start, end, orderByComparator);
473            }
474    
475            /**
476            * @throws SystemException if a system exception occurred
477            */
478            public static int getUserGroupTeamsCount(long userGroupId)
479                    throws com.liferay.portal.kernel.exception.SystemException {
480                    return getService().getUserGroupTeamsCount(userGroupId);
481            }
482    
483            /**
484            * @throws SystemException if a system exception occurred
485            */
486            public static boolean hasUserGroupTeam(long userGroupId, long teamId)
487                    throws com.liferay.portal.kernel.exception.SystemException {
488                    return getService().hasUserGroupTeam(userGroupId, teamId);
489            }
490    
491            /**
492            * @throws SystemException if a system exception occurred
493            */
494            public static boolean hasUserGroupTeams(long userGroupId)
495                    throws com.liferay.portal.kernel.exception.SystemException {
496                    return getService().hasUserGroupTeams(userGroupId);
497            }
498    
499            /**
500            * @throws SystemException if a system exception occurred
501            */
502            public static void setUserGroupTeams(long userGroupId, long[] teamIds)
503                    throws com.liferay.portal.kernel.exception.SystemException {
504                    getService().setUserGroupTeams(userGroupId, teamIds);
505            }
506    
507            /**
508            * Returns the Spring bean ID for this bean.
509            *
510            * @return the Spring bean ID for this bean
511            */
512            public static java.lang.String getBeanIdentifier() {
513                    return getService().getBeanIdentifier();
514            }
515    
516            /**
517            * Sets the Spring bean ID for this bean.
518            *
519            * @param beanIdentifier the Spring bean ID for this bean
520            */
521            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
522                    getService().setBeanIdentifier(beanIdentifier);
523            }
524    
525            public static com.liferay.portal.model.Team addTeam(long userId,
526                    long groupId, java.lang.String name, java.lang.String description)
527                    throws com.liferay.portal.kernel.exception.PortalException,
528                            com.liferay.portal.kernel.exception.SystemException {
529                    return getService().addTeam(userId, groupId, name, description);
530            }
531    
532            public static void deleteTeams(long groupId)
533                    throws com.liferay.portal.kernel.exception.PortalException,
534                            com.liferay.portal.kernel.exception.SystemException {
535                    getService().deleteTeams(groupId);
536            }
537    
538            public static java.util.List<com.liferay.portal.model.Team> getGroupTeams(
539                    long groupId)
540                    throws com.liferay.portal.kernel.exception.SystemException {
541                    return getService().getGroupTeams(groupId);
542            }
543    
544            public static com.liferay.portal.model.Team getTeam(long groupId,
545                    java.lang.String name)
546                    throws com.liferay.portal.kernel.exception.PortalException,
547                            com.liferay.portal.kernel.exception.SystemException {
548                    return getService().getTeam(groupId, name);
549            }
550    
551            public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
552                    long userId, long groupId)
553                    throws com.liferay.portal.kernel.exception.SystemException {
554                    return getService().getUserTeams(userId, groupId);
555            }
556    
557            public static java.util.List<com.liferay.portal.model.Team> search(
558                    long groupId, java.lang.String name, java.lang.String description,
559                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
560                    int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
561                    throws com.liferay.portal.kernel.exception.SystemException {
562                    return getService()
563                                       .search(groupId, name, description, params, start, end, obc);
564            }
565    
566            public static int searchCount(long groupId, java.lang.String name,
567                    java.lang.String description,
568                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params)
569                    throws com.liferay.portal.kernel.exception.SystemException {
570                    return getService().searchCount(groupId, name, description, params);
571            }
572    
573            public static com.liferay.portal.model.Team updateTeam(long teamId,
574                    java.lang.String name, java.lang.String description)
575                    throws com.liferay.portal.kernel.exception.PortalException,
576                            com.liferay.portal.kernel.exception.SystemException {
577                    return getService().updateTeam(teamId, name, description);
578            }
579    
580            public static TeamLocalService getService() {
581                    if (_service == null) {
582                            _service = (TeamLocalService)PortalBeanLocatorUtil.locate(TeamLocalService.class.getName());
583    
584                            ReferenceRegistry.registerReference(TeamLocalServiceUtil.class,
585                                    "_service");
586                    }
587    
588                    return _service;
589            }
590    
591            /**
592             * @deprecated As of 6.2.0
593             */
594            public void setService(TeamLocalService service) {
595            }
596    
597            private static TeamLocalService _service;
598    }