]> source.dussan.org Git - archiva.git/blob
e5f47d3e85d27ab0742e7d706ff70a770fdc13ce
[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.role.RoleManager;
22 import org.codehaus.plexus.redback.role.RoleManagerException;
23 import org.codehaus.plexus.redback.role.model.RedbackRoleModel;
24 import org.springframework.stereotype.Service;
25
26 import java.net.URL;
27
28 /**
29  * @author Olivier Lamy
30  */
31 @Service( "roleManager#test" )
32 public class TestRoleManager implements RoleManager
33 {
34     public void loadRoleModel( URL resourceLocation )
35         throws RoleManagerException
36     {
37         //To change body of implemented methods use File | Settings | File Templates.
38     }
39
40     public void loadRoleModel( RedbackRoleModel model )
41         throws RoleManagerException
42     {
43         //To change body of implemented methods use File | Settings | File Templates.
44     }
45
46     public void createTemplatedRole( String templateId, String resource )
47         throws RoleManagerException
48     {
49         //To change body of implemented methods use File | Settings | File Templates.
50     }
51
52     public void removeTemplatedRole( String templateId, String resource )
53         throws RoleManagerException
54     {
55         //To change body of implemented methods use File | Settings | File Templates.
56     }
57
58     public void updateRole( String templateId, String oldResource, String newResource )
59         throws RoleManagerException
60     {
61         //To change body of implemented methods use File | Settings | File Templates.
62     }
63
64     public void assignRole( String roleId, String principal )
65         throws RoleManagerException
66     {
67         //To change body of implemented methods use File | Settings | File Templates.
68     }
69
70     public void assignRoleByName( String roleName, String principal )
71         throws RoleManagerException
72     {
73         //To change body of implemented methods use File | Settings | File Templates.
74     }
75
76     public void assignTemplatedRole( String templateId, String resource, String principal )
77         throws RoleManagerException
78     {
79         //To change body of implemented methods use File | Settings | File Templates.
80     }
81
82     public void unassignRole( String roleId, String principal )
83         throws RoleManagerException
84     {
85         //To change body of implemented methods use File | Settings | File Templates.
86     }
87
88     public void unassignRoleByName( String roleName, String principal )
89         throws RoleManagerException
90     {
91         //To change body of implemented methods use File | Settings | File Templates.
92     }
93
94     public boolean roleExists( String roleId )
95         throws RoleManagerException
96     {
97         return false;  //To change body of implemented methods use File | Settings | File Templates.
98     }
99
100     public boolean templatedRoleExists( String templateId, String resource )
101         throws RoleManagerException
102     {
103         return false;  //To change body of implemented methods use File | Settings | File Templates.
104     }
105
106     public RedbackRoleModel getModel()
107     {
108         return null;  //To change body of implemented methods use File | Settings | File Templates.
109     }
110
111     public void verifyTemplatedRole( String templateID, String resource )
112         throws RoleManagerException
113     {
114         //To change body of implemented methods use File | Settings | File Templates.
115     }
116 }