1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.service;
24  
25  
26  /**
27   * <a href="RoleServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class provides static methods for the
36   * <code>com.liferay.portal.service.RoleService</code>
37   * bean. The static methods of this class calls the same methods of the bean
38   * instance. It's convenient to be able to just write one line to call a method
39   * on a bean instead of writing a lookup call and a method call.
40   * </p>
41   *
42   * @author Brian Wing Shun Chan
43   *
44   * @see com.liferay.portal.service.RoleService
45   *
46   */
47  public class RoleServiceUtil {
48      public static com.liferay.portal.model.Role addRole(java.lang.String name,
49          java.lang.String description, int type)
50          throws com.liferay.portal.PortalException,
51              com.liferay.portal.SystemException {
52          return getService().addRole(name, description, type);
53      }
54  
55      public static void addUserRoles(long userId, long[] roleIds)
56          throws com.liferay.portal.PortalException,
57              com.liferay.portal.SystemException {
58          getService().addUserRoles(userId, roleIds);
59      }
60  
61      public static void deleteRole(long roleId)
62          throws com.liferay.portal.PortalException,
63              com.liferay.portal.SystemException {
64          getService().deleteRole(roleId);
65      }
66  
67      public static com.liferay.portal.model.Role getGroupRole(long companyId,
68          long groupId)
69          throws com.liferay.portal.PortalException,
70              com.liferay.portal.SystemException {
71          return getService().getGroupRole(companyId, groupId);
72      }
73  
74      public static java.util.List<com.liferay.portal.model.Role> getGroupRoles(
75          long groupId) throws com.liferay.portal.SystemException {
76          return getService().getGroupRoles(groupId);
77      }
78  
79      public static com.liferay.portal.model.Role getRole(long roleId)
80          throws com.liferay.portal.PortalException,
81              com.liferay.portal.SystemException {
82          return getService().getRole(roleId);
83      }
84  
85      public static com.liferay.portal.model.Role getRole(long companyId,
86          java.lang.String name)
87          throws com.liferay.portal.PortalException,
88              com.liferay.portal.SystemException {
89          return getService().getRole(companyId, name);
90      }
91  
92      public static java.util.List<com.liferay.portal.model.Role> getUserGroupRoles(
93          long userId, long groupId) throws com.liferay.portal.SystemException {
94          return getService().getUserGroupRoles(userId, groupId);
95      }
96  
97      public static java.util.List<com.liferay.portal.model.Role> getUserRelatedRoles(
98          long userId, java.util.List<com.liferay.portal.model.Group> groups)
99          throws com.liferay.portal.SystemException {
100         return getService().getUserRelatedRoles(userId, groups);
101     }
102 
103     public static java.util.List<com.liferay.portal.model.Role> getUserRoles(
104         long userId) throws com.liferay.portal.SystemException {
105         return getService().getUserRoles(userId);
106     }
107 
108     public static boolean hasUserRole(long userId, long companyId,
109         java.lang.String name, boolean inherited)
110         throws com.liferay.portal.PortalException,
111             com.liferay.portal.SystemException {
112         return getService().hasUserRole(userId, companyId, name, inherited);
113     }
114 
115     public static boolean hasUserRoles(long userId, long companyId,
116         java.lang.String[] names, boolean inherited)
117         throws com.liferay.portal.PortalException,
118             com.liferay.portal.SystemException {
119         return getService().hasUserRoles(userId, companyId, names, inherited);
120     }
121 
122     public static void unsetUserRoles(long userId, long[] roleIds)
123         throws com.liferay.portal.PortalException,
124             com.liferay.portal.SystemException {
125         getService().unsetUserRoles(userId, roleIds);
126     }
127 
128     public static com.liferay.portal.model.Role updateRole(long roleId,
129         java.lang.String name,
130         java.util.Map<java.util.Locale, String> localeTitlesMap,
131         java.lang.String description, java.lang.String subtype)
132         throws com.liferay.portal.PortalException,
133             com.liferay.portal.SystemException {
134         return getService()
135                    .updateRole(roleId, name, localeTitlesMap, description,
136             subtype);
137     }
138 
139     public static RoleService getService() {
140         if (_service == null) {
141             throw new RuntimeException("RoleService is not set");
142         }
143 
144         return _service;
145     }
146 
147     public void setService(RoleService service) {
148         _service = service;
149     }
150 
151     private static RoleService _service;
152 }