]> source.dussan.org Git - archiva.git/blob
3e367bdf6b6345bb390598403dd8db55fef10c5d
[archiva.git] /
1 package org.apache.archiva.consumers.lucene.test;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import org.codehaus.plexus.redback.rbac.Operation;
22 import org.codehaus.plexus.redback.rbac.Permission;
23 import org.codehaus.plexus.redback.rbac.RBACManager;
24 import org.codehaus.plexus.redback.rbac.RBACManagerListener;
25 import org.codehaus.plexus.redback.rbac.RbacManagerException;
26 import org.codehaus.plexus.redback.rbac.RbacObjectInvalidException;
27 import org.codehaus.plexus.redback.rbac.RbacObjectNotFoundException;
28 import org.codehaus.plexus.redback.rbac.Resource;
29 import org.codehaus.plexus.redback.rbac.Role;
30 import org.codehaus.plexus.redback.rbac.UserAssignment;
31 import org.springframework.stereotype.Service;
32
33 import java.util.Collection;
34 import java.util.List;
35 import java.util.Map;
36 import java.util.Set;
37
38 /**
39  * @author Olivier Lamy
40  */
41 @Service("rBACManager#cached")
42 public class TestRBACManager implements RBACManager
43 {
44     public void addListener( RBACManagerListener listener )
45     {
46         //To change body of implemented methods use File | Settings | File Templates.
47     }
48
49     public void removeListener( RBACManagerListener listener )
50     {
51         //To change body of implemented methods use File | Settings | File Templates.
52     }
53
54     public Role createRole( String name )
55     {
56         return null;  //To change body of implemented methods use File | Settings | File Templates.
57     }
58
59     public boolean roleExists( String name )
60     {
61         return false;  //To change body of implemented methods use File | Settings | File Templates.
62     }
63
64     public boolean roleExists( Role role )
65     {
66         return false;  //To change body of implemented methods use File | Settings | File Templates.
67     }
68
69     public Role saveRole( Role role )
70         throws RbacObjectInvalidException, RbacManagerException
71     {
72         return null;  //To change body of implemented methods use File | Settings | File Templates.
73     }
74
75     public void saveRoles( Collection<Role> roles )
76         throws RbacObjectInvalidException, RbacManagerException
77     {
78         //To change body of implemented methods use File | Settings | File Templates.
79     }
80
81     public Role getRole( String roleName )
82         throws RbacObjectNotFoundException, RbacManagerException
83     {
84         return null;  //To change body of implemented methods use File | Settings | File Templates.
85     }
86
87     public Map<String, Role> getRoles( Collection<String> roleNames )
88         throws RbacObjectNotFoundException, RbacManagerException
89     {
90         return null;  //To change body of implemented methods use File | Settings | File Templates.
91     }
92
93     public void addChildRole( Role role, Role childRole )
94         throws RbacObjectInvalidException, RbacManagerException
95     {
96         //To change body of implemented methods use File | Settings | File Templates.
97     }
98
99     public Map<String, Role> getChildRoles( Role role )
100         throws RbacManagerException
101     {
102         return null;  //To change body of implemented methods use File | Settings | File Templates.
103     }
104
105     public Map<String, Role> getParentRoles( Role role )
106         throws RbacManagerException
107     {
108         return null;  //To change body of implemented methods use File | Settings | File Templates.
109     }
110
111     public List<Role> getAllRoles()
112         throws RbacManagerException
113     {
114         return null;  //To change body of implemented methods use File | Settings | File Templates.
115     }
116
117     public Set<Role> getEffectiveRoles( Role role )
118         throws RbacObjectNotFoundException, RbacManagerException
119     {
120         return null;  //To change body of implemented methods use File | Settings | File Templates.
121     }
122
123     public void removeRole( Role role )
124         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
125     {
126         //To change body of implemented methods use File | Settings | File Templates.
127     }
128
129     public void removeRole( String roleName )
130         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
131     {
132         //To change body of implemented methods use File | Settings | File Templates.
133     }
134
135     public Permission createPermission( String name )
136         throws RbacManagerException
137     {
138         return null;  //To change body of implemented methods use File | Settings | File Templates.
139     }
140
141     public Permission createPermission( String name, String operationName, String resourceIdentifier )
142         throws RbacManagerException
143     {
144         return null;  //To change body of implemented methods use File | Settings | File Templates.
145     }
146
147     public boolean permissionExists( String name )
148     {
149         return false;  //To change body of implemented methods use File | Settings | File Templates.
150     }
151
152     public boolean permissionExists( Permission permission )
153     {
154         return false;  //To change body of implemented methods use File | Settings | File Templates.
155     }
156
157     public Permission savePermission( Permission permission )
158         throws RbacObjectInvalidException, RbacManagerException
159     {
160         return null;  //To change body of implemented methods use File | Settings | File Templates.
161     }
162
163     public Permission getPermission( String permissionName )
164         throws RbacObjectNotFoundException, RbacManagerException
165     {
166         return null;  //To change body of implemented methods use File | Settings | File Templates.
167     }
168
169     public List<Permission> getAllPermissions()
170         throws RbacManagerException
171     {
172         return null;  //To change body of implemented methods use File | Settings | File Templates.
173     }
174
175     public void removePermission( Permission permission )
176         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
177     {
178         //To change body of implemented methods use File | Settings | File Templates.
179     }
180
181     public void removePermission( String permissionName )
182         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
183     {
184         //To change body of implemented methods use File | Settings | File Templates.
185     }
186
187     public Operation createOperation( String name )
188         throws RbacManagerException
189     {
190         return null;  //To change body of implemented methods use File | Settings | File Templates.
191     }
192
193     public boolean operationExists( String name )
194     {
195         return false;  //To change body of implemented methods use File | Settings | File Templates.
196     }
197
198     public boolean operationExists( Operation operation )
199     {
200         return false;  //To change body of implemented methods use File | Settings | File Templates.
201     }
202
203     public Operation saveOperation( Operation operation )
204         throws RbacObjectInvalidException, RbacManagerException
205     {
206         return null;  //To change body of implemented methods use File | Settings | File Templates.
207     }
208
209     public Operation getOperation( String operationName )
210         throws RbacObjectNotFoundException, RbacManagerException
211     {
212         return null;  //To change body of implemented methods use File | Settings | File Templates.
213     }
214
215     public List<Operation> getAllOperations()
216         throws RbacManagerException
217     {
218         return null;  //To change body of implemented methods use File | Settings | File Templates.
219     }
220
221     public void removeOperation( Operation operation )
222         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
223     {
224         //To change body of implemented methods use File | Settings | File Templates.
225     }
226
227     public void removeOperation( String operationName )
228         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
229     {
230         //To change body of implemented methods use File | Settings | File Templates.
231     }
232
233     public Resource createResource( String identifier )
234         throws RbacManagerException
235     {
236         return null;  //To change body of implemented methods use File | Settings | File Templates.
237     }
238
239     public boolean resourceExists( String identifier )
240     {
241         return false;  //To change body of implemented methods use File | Settings | File Templates.
242     }
243
244     public boolean resourceExists( Resource resource )
245     {
246         return false;  //To change body of implemented methods use File | Settings | File Templates.
247     }
248
249     public Resource saveResource( Resource resource )
250         throws RbacObjectInvalidException, RbacManagerException
251     {
252         return null;  //To change body of implemented methods use File | Settings | File Templates.
253     }
254
255     public Resource getResource( String resourceIdentifier )
256         throws RbacObjectNotFoundException, RbacManagerException
257     {
258         return null;  //To change body of implemented methods use File | Settings | File Templates.
259     }
260
261     public List<Resource> getAllResources()
262         throws RbacManagerException
263     {
264         return null;  //To change body of implemented methods use File | Settings | File Templates.
265     }
266
267     public void removeResource( Resource resource )
268         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
269     {
270         //To change body of implemented methods use File | Settings | File Templates.
271     }
272
273     public void removeResource( String resourceIdentifier )
274         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
275     {
276         //To change body of implemented methods use File | Settings | File Templates.
277     }
278
279     public UserAssignment createUserAssignment( String principal )
280         throws RbacManagerException
281     {
282         return null;  //To change body of implemented methods use File | Settings | File Templates.
283     }
284
285     public boolean userAssignmentExists( String principal )
286     {
287         return false;  //To change body of implemented methods use File | Settings | File Templates.
288     }
289
290     public boolean userAssignmentExists( UserAssignment assignment )
291     {
292         return false;  //To change body of implemented methods use File | Settings | File Templates.
293     }
294
295     public UserAssignment saveUserAssignment( UserAssignment userAssignment )
296         throws RbacObjectInvalidException, RbacManagerException
297     {
298         return null;  //To change body of implemented methods use File | Settings | File Templates.
299     }
300
301     public UserAssignment getUserAssignment( String principal )
302         throws RbacObjectNotFoundException, RbacManagerException
303     {
304         return null;  //To change body of implemented methods use File | Settings | File Templates.
305     }
306
307     public List<UserAssignment> getAllUserAssignments()
308         throws RbacManagerException
309     {
310         return null;  //To change body of implemented methods use File | Settings | File Templates.
311     }
312
313     public List<UserAssignment> getUserAssignmentsForRoles( Collection<String> roleNames )
314         throws RbacManagerException
315     {
316         return null;  //To change body of implemented methods use File | Settings | File Templates.
317     }
318
319     public void removeUserAssignment( UserAssignment userAssignment )
320         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
321     {
322         //To change body of implemented methods use File | Settings | File Templates.
323     }
324
325     public void removeUserAssignment( String principal )
326         throws RbacObjectNotFoundException, RbacObjectInvalidException, RbacManagerException
327     {
328         //To change body of implemented methods use File | Settings | File Templates.
329     }
330
331     public Collection<Role> getAssignedRoles( String principal )
332         throws RbacObjectNotFoundException, RbacManagerException
333     {
334         return null;  //To change body of implemented methods use File | Settings | File Templates.
335     }
336
337     public Collection<Role> getAssignedRoles( UserAssignment userAssignment )
338         throws RbacObjectNotFoundException, RbacManagerException
339     {
340         return null;  //To change body of implemented methods use File | Settings | File Templates.
341     }
342
343     public Collection<Role> getEffectivelyUnassignedRoles( String principal )
344         throws RbacManagerException, RbacObjectNotFoundException
345     {
346         return null;  //To change body of implemented methods use File | Settings | File Templates.
347     }
348
349     public Collection<Role> getEffectivelyAssignedRoles( String principal )
350         throws RbacObjectNotFoundException, RbacManagerException
351     {
352         return null;  //To change body of implemented methods use File | Settings | File Templates.
353     }
354
355     public Collection<Role> getUnassignedRoles( String principal )
356         throws RbacManagerException, RbacObjectNotFoundException
357     {
358         return null;  //To change body of implemented methods use File | Settings | File Templates.
359     }
360
361     public Set<Permission> getAssignedPermissions( String principal )
362         throws RbacObjectNotFoundException, RbacManagerException
363     {
364         return null;  //To change body of implemented methods use File | Settings | File Templates.
365     }
366
367     public Map<String, List<Permission>> getAssignedPermissionMap( String principal )
368         throws RbacObjectNotFoundException, RbacManagerException
369     {
370         return null;  //To change body of implemented methods use File | Settings | File Templates.
371     }
372
373     public List<Role> getAllAssignableRoles()
374         throws RbacManagerException, RbacObjectNotFoundException
375     {
376         return null;  //To change body of implemented methods use File | Settings | File Templates.
377     }
378
379     public Resource getGlobalResource()
380         throws RbacManagerException
381     {
382         return null;  //To change body of implemented methods use File | Settings | File Templates.
383     }
384
385     public void eraseDatabase()
386     {
387         //To change body of implemented methods use File | Settings | File Templates.
388     }
389 }