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