001
014
015 package com.liferay.portal.service;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018
019
032 public class TeamServiceUtil {
033 public static com.liferay.portal.model.Team addTeam(long groupId,
034 java.lang.String name, java.lang.String description)
035 throws com.liferay.portal.kernel.exception.PortalException,
036 com.liferay.portal.kernel.exception.SystemException {
037 return getService().addTeam(groupId, name, description);
038 }
039
040 public static void deleteTeam(long teamId)
041 throws com.liferay.portal.kernel.exception.PortalException,
042 com.liferay.portal.kernel.exception.SystemException {
043 getService().deleteTeam(teamId);
044 }
045
046 public static com.liferay.portal.model.Team updateTeam(long teamId,
047 java.lang.String name, java.lang.String description)
048 throws com.liferay.portal.kernel.exception.PortalException,
049 com.liferay.portal.kernel.exception.SystemException {
050 return getService().updateTeam(teamId, name, description);
051 }
052
053 public static TeamService getService() {
054 if (_service == null) {
055 _service = (TeamService)PortalBeanLocatorUtil.locate(TeamService.class.getName());
056 }
057
058 return _service;
059 }
060
061 public void setService(TeamService service) {
062 _service = service;
063 }
064
065 private static TeamService _service;
066 }