1   /**
2    * Copyright (c) 2000-2008 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, java.rmi.RemoteException {
52          return _service.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, java.rmi.RemoteException {
58          _service.addUserRoles(userId, roleIds);
59      }
60  
61      public static void deleteRole(long roleId)
62          throws com.liferay.portal.PortalException,
63              com.liferay.portal.SystemException, java.rmi.RemoteException {
64          _service.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, java.rmi.RemoteException {
71          return _service.getGroupRole(companyId, groupId);
72      }
73  
74      public static java.util.List<com.liferay.portal.model.Role> getGroupRoles(
75          long groupId)
76          throws com.liferay.portal.SystemException, java.rmi.RemoteException {
77          return _service.getGroupRoles(groupId);
78      }
79  
80      public static com.liferay.portal.model.Role getRole(long roleId)
81          throws com.liferay.portal.PortalException,
82              com.liferay.portal.SystemException, java.rmi.RemoteException {
83          return _service.getRole(roleId);
84      }
85  
86      public static com.liferay.portal.model.Role getRole(long companyId,
87          java.lang.String name)
88          throws com.liferay.portal.PortalException,
89              com.liferay.portal.SystemException, java.rmi.RemoteException {
90          return _service.getRole(companyId, name);
91      }
92  
93      public static java.util.List<com.liferay.portal.model.Role> getUserGroupRoles(
94          long userId, long groupId)
95          throws com.liferay.portal.SystemException, java.rmi.RemoteException {
96          return _service.getUserGroupRoles(userId, groupId);
97      }
98  
99      public static java.util.List<com.liferay.portal.model.Role> getUserRelatedRoles(
100         long userId, java.util.List<com.liferay.portal.model.Group> groups)
101         throws com.liferay.portal.SystemException, java.rmi.RemoteException {
102         return _service.getUserRelatedRoles(userId, groups);
103     }
104 
105     public static java.util.List<com.liferay.portal.model.Role> getUserRoles(
106         long userId)
107         throws com.liferay.portal.SystemException, java.rmi.RemoteException {
108         return _service.getUserRoles(userId);
109     }
110 
111     public static boolean hasUserRole(long userId, long companyId,
112         java.lang.String name, boolean inherited)
113         throws com.liferay.portal.PortalException,
114             com.liferay.portal.SystemException, java.rmi.RemoteException {
115         return _service.hasUserRole(userId, companyId, name, inherited);
116     }
117 
118     public static boolean hasUserRoles(long userId, long companyId,
119         java.lang.String[] names, boolean inherited)
120         throws com.liferay.portal.PortalException,
121             com.liferay.portal.SystemException, java.rmi.RemoteException {
122         return _service.hasUserRoles(userId, companyId, names, inherited);
123     }
124 
125     public static void unsetUserRoles(long userId, long[] roleIds)
126         throws com.liferay.portal.PortalException,
127             com.liferay.portal.SystemException, java.rmi.RemoteException {
128         _service.unsetUserRoles(userId, roleIds);
129     }
130 
131     public static com.liferay.portal.model.Role updateRole(long roleId,
132         java.lang.String name, java.lang.String description)
133         throws com.liferay.portal.PortalException,
134             com.liferay.portal.SystemException, java.rmi.RemoteException {
135         return _service.updateRole(roleId, name, description);
136     }
137 
138     public static RoleService getService() {
139         return _service;
140     }
141 
142     public void setService(RoleService service) {
143         _service = service;
144     }
145 
146     private static RoleService _service;
147 }