]> source.dussan.org Git - archiva.git/blob
f8b9dc07575f3874bb3be97f33c708957ecc8e64
[archiva.git] /
1 package org.apache.archiva.security;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.admin.model.beans.ManagedRepository;
23
24 import java.util.Collections;
25 import java.util.List;
26
27 /**
28  * UserRepositories stub used for testing.
29  *
30  * @version $Id$
31  */
32 public class UserRepositoriesStub
33     implements UserRepositories
34 {
35     private List<String> repoIds = Collections.singletonList( "test-repo" );
36
37     public void createMissingRepositoryRoles( String repoId )
38         throws ArchivaSecurityException
39     {
40     }
41
42     public List<String> getObservableRepositoryIds( String principal )
43         throws ArchivaSecurityException
44     {
45         return repoIds;
46     }
47
48     public void setObservableRepositoryIds( List<String> repoIds )
49     {
50         this.repoIds = repoIds;
51     }
52
53     public boolean isAuthorizedToUploadArtifacts( String principal, String repoId )
54         throws ArchivaSecurityException
55     {
56         return true;
57     }
58
59     public boolean isAuthorizedToDeleteArtifacts( String principal, String repoId )
60     {
61         return true;
62     }
63
64     public List<String> getManagableRepositoryIds( String principal )
65         throws ArchivaSecurityException
66     {
67         return null;
68     }
69
70     public List<String> getRepoIds()
71     {
72         return repoIds;
73     }
74
75     public void setRepoIds( List<String> repoIds )
76     {
77         this.repoIds = repoIds;
78     }
79
80     public List<ManagedRepository> getAccessibleRepositories( String principal )
81         throws ArchivaSecurityException, AccessDeniedException, PrincipalNotFoundException
82     {
83         return Collections.emptyList();
84     }
85 }