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 remote service. This utility wraps {@link com.liferay.portal.service.impl.TeamServiceImpl} and is the primary access point for service operations in application layer code running on a remote server.
022     *
023     * <p>
024     * This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.
025     * </p>
026     *
027     * @author Brian Wing Shun Chan
028     * @see TeamService
029     * @see com.liferay.portal.service.base.TeamServiceBaseImpl
030     * @see com.liferay.portal.service.impl.TeamServiceImpl
031     * @generated
032     */
033    public class TeamServiceUtil {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.TeamServiceImpl} and rerun ServiceBuilder to regenerate this class.
038             */
039    
040            /**
041            * Returns the Spring bean ID for this bean.
042            *
043            * @return the Spring bean ID for this bean
044            */
045            public static java.lang.String getBeanIdentifier() {
046                    return getService().getBeanIdentifier();
047            }
048    
049            /**
050            * Sets the Spring bean ID for this bean.
051            *
052            * @param beanIdentifier the Spring bean ID for this bean
053            */
054            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
055                    getService().setBeanIdentifier(beanIdentifier);
056            }
057    
058            public static com.liferay.portal.model.Team addTeam(long groupId,
059                    java.lang.String name, java.lang.String description)
060                    throws com.liferay.portal.kernel.exception.PortalException,
061                            com.liferay.portal.kernel.exception.SystemException {
062                    return getService().addTeam(groupId, name, description);
063            }
064    
065            public static void deleteTeam(long teamId)
066                    throws com.liferay.portal.kernel.exception.PortalException,
067                            com.liferay.portal.kernel.exception.SystemException {
068                    getService().deleteTeam(teamId);
069            }
070    
071            public static java.util.List<com.liferay.portal.model.Team> getGroupTeams(
072                    long groupId)
073                    throws com.liferay.portal.kernel.exception.PortalException,
074                            com.liferay.portal.kernel.exception.SystemException {
075                    return getService().getGroupTeams(groupId);
076            }
077    
078            public static com.liferay.portal.model.Team getTeam(long teamId)
079                    throws com.liferay.portal.kernel.exception.PortalException,
080                            com.liferay.portal.kernel.exception.SystemException {
081                    return getService().getTeam(teamId);
082            }
083    
084            public static com.liferay.portal.model.Team getTeam(long groupId,
085                    java.lang.String name)
086                    throws com.liferay.portal.kernel.exception.PortalException,
087                            com.liferay.portal.kernel.exception.SystemException {
088                    return getService().getTeam(groupId, name);
089            }
090    
091            public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
092                    long userId)
093                    throws com.liferay.portal.kernel.exception.PortalException,
094                            com.liferay.portal.kernel.exception.SystemException {
095                    return getService().getUserTeams(userId);
096            }
097    
098            public static java.util.List<com.liferay.portal.model.Team> getUserTeams(
099                    long userId, long groupId)
100                    throws com.liferay.portal.kernel.exception.PortalException,
101                            com.liferay.portal.kernel.exception.SystemException {
102                    return getService().getUserTeams(userId, groupId);
103            }
104    
105            public static boolean hasUserTeam(long userId, long teamId)
106                    throws com.liferay.portal.kernel.exception.PortalException,
107                            com.liferay.portal.kernel.exception.SystemException {
108                    return getService().hasUserTeam(userId, teamId);
109            }
110    
111            public static com.liferay.portal.model.Team updateTeam(long teamId,
112                    java.lang.String name, java.lang.String description)
113                    throws com.liferay.portal.kernel.exception.PortalException,
114                            com.liferay.portal.kernel.exception.SystemException {
115                    return getService().updateTeam(teamId, name, description);
116            }
117    
118            public static TeamService getService() {
119                    if (_service == null) {
120                            _service = (TeamService)PortalBeanLocatorUtil.locate(TeamService.class.getName());
121    
122                            ReferenceRegistry.registerReference(TeamServiceUtil.class,
123                                    "_service");
124                    }
125    
126                    return _service;
127            }
128    
129            /**
130             * @deprecated
131             */
132            public void setService(TeamService service) {
133            }
134    
135            private static TeamService _service;
136    }