1
22
23 package com.liferay.portal.service;
24
25 import com.liferay.portal.PortalException;
26 import com.liferay.portal.SystemException;
27 import com.liferay.portal.kernel.annotation.Propagation;
28 import com.liferay.portal.kernel.annotation.Transactional;
29
30
54 @Transactional(rollbackFor = {
55 PortalException.class, SystemException.class})
56 public interface RoleLocalService {
57 public com.liferay.portal.model.Role addRole(
58 com.liferay.portal.model.Role role)
59 throws com.liferay.portal.SystemException;
60
61 public com.liferay.portal.model.Role createRole(long roleId);
62
63 public void deleteRole(long roleId)
64 throws com.liferay.portal.SystemException,
65 com.liferay.portal.PortalException;
66
67 public void deleteRole(com.liferay.portal.model.Role role)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
72 throws com.liferay.portal.SystemException;
73
74 public java.util.List<Object> dynamicQuery(
75 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
76 int end) throws com.liferay.portal.SystemException;
77
78 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
79 public com.liferay.portal.model.Role getRole(long roleId)
80 throws com.liferay.portal.SystemException,
81 com.liferay.portal.PortalException;
82
83 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
84 public java.util.List<com.liferay.portal.model.Role> getRoles(int start,
85 int end) throws com.liferay.portal.SystemException;
86
87 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
88 public int getRolesCount() throws com.liferay.portal.SystemException;
89
90 public com.liferay.portal.model.Role updateRole(
91 com.liferay.portal.model.Role role)
92 throws com.liferay.portal.SystemException;
93
94 public com.liferay.portal.model.Role addRole(long userId, long companyId,
95 java.lang.String name, java.lang.String description, int type)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException;
98
99 public com.liferay.portal.model.Role addRole(long userId, long companyId,
100 java.lang.String name, java.lang.String description, int type,
101 java.lang.String className, long classPK)
102 throws com.liferay.portal.PortalException,
103 com.liferay.portal.SystemException;
104
105 public void addUserRoles(long userId, long[] roleIds)
106 throws com.liferay.portal.SystemException;
107
108 public void checkSystemRoles(long companyId)
109 throws com.liferay.portal.PortalException,
110 com.liferay.portal.SystemException;
111
112 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
113 public com.liferay.portal.model.Role getGroupRole(long companyId,
114 long groupId)
115 throws com.liferay.portal.PortalException,
116 com.liferay.portal.SystemException;
117
118 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
119 public java.util.List<com.liferay.portal.model.Role> getGroupRoles(
120 long groupId) throws com.liferay.portal.SystemException;
121
122 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
123 public java.util.Map<String, java.util.List<String>> getResourceRoles(
124 long companyId, java.lang.String name, int scope,
125 java.lang.String primKey) throws com.liferay.portal.SystemException;
126
127 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
128 public com.liferay.portal.model.Role getRole(long companyId,
129 java.lang.String name)
130 throws com.liferay.portal.PortalException,
131 com.liferay.portal.SystemException;
132
133 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
134 public java.util.List<com.liferay.portal.model.Role> getRoles(
135 long companyId) throws com.liferay.portal.SystemException;
136
137 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
138 public java.util.List<com.liferay.portal.model.Role> getUserGroupRoles(
139 long userId, long groupId) throws com.liferay.portal.SystemException;
140
141 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
142 public java.util.List<com.liferay.portal.model.Role> getUserRelatedRoles(
143 long userId, long groupId) throws com.liferay.portal.SystemException;
144
145 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
146 public java.util.List<com.liferay.portal.model.Role> getUserRelatedRoles(
147 long userId, long[] groupIds) throws com.liferay.portal.SystemException;
148
149 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
150 public java.util.List<com.liferay.portal.model.Role> getUserRelatedRoles(
151 long userId, java.util.List<com.liferay.portal.model.Group> groups)
152 throws com.liferay.portal.SystemException;
153
154 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
155 public java.util.List<com.liferay.portal.model.Role> getUserRoles(
156 long userId) throws com.liferay.portal.SystemException;
157
158 public boolean hasUserRole(long userId, long roleId)
159 throws com.liferay.portal.SystemException;
160
161 public boolean hasUserRole(long userId, long companyId,
162 java.lang.String name, boolean inherited)
163 throws com.liferay.portal.PortalException,
164 com.liferay.portal.SystemException;
165
166 public boolean hasUserRoles(long userId, long companyId,
167 java.lang.String[] names, boolean inherited)
168 throws com.liferay.portal.PortalException,
169 com.liferay.portal.SystemException;
170
171 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
172 public java.util.List<com.liferay.portal.model.Role> search(
173 long companyId, java.lang.String name, java.lang.String description,
174 java.lang.Integer type, int start, int end,
175 com.liferay.portal.kernel.util.OrderByComparator obc)
176 throws com.liferay.portal.SystemException;
177
178 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
179 public java.util.List<com.liferay.portal.model.Role> search(
180 long companyId, java.lang.String name, java.lang.String description,
181 java.lang.Integer type, java.util.LinkedHashMap<String, Object> params,
182 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
183 throws com.liferay.portal.SystemException;
184
185 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
186 public int searchCount(long companyId, java.lang.String name,
187 java.lang.String description, java.lang.Integer type)
188 throws com.liferay.portal.SystemException;
189
190 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
191 public int searchCount(long companyId, java.lang.String name,
192 java.lang.String description, java.lang.Integer type,
193 java.util.LinkedHashMap<String, Object> params)
194 throws com.liferay.portal.SystemException;
195
196 public void setUserRoles(long userId, long[] roleIds)
197 throws com.liferay.portal.SystemException;
198
199 public void unsetUserRoles(long userId, long[] roleIds)
200 throws com.liferay.portal.SystemException;
201
202 public com.liferay.portal.model.Role updateRole(long roleId,
203 java.lang.String name, java.lang.String description)
204 throws com.liferay.portal.PortalException,
205 com.liferay.portal.SystemException;
206 }