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