]> source.dussan.org Git - archiva.git/blob
b1d48b2c4b5e55f04c0a9ae25b53931fb1065ad3
[archiva.git] /
1 package org.apache.maven.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.codehaus.plexus.redback.rbac.RbacObjectNotFoundException;
23 import org.codehaus.plexus.redback.rbac.RbacManagerException;
24
25 import java.util.List;
26
27 /**
28  * UserRepositories 
29  *
30  * @version $Id$
31  */
32 public interface UserRepositories
33 {
34     /**
35      * Get the list of observable repository ids for the user specified.
36      * 
37      * @param principal the principle to obtain the observable repository ids from.
38      * @return the list of observable repository ids.
39      * @throws PrincipalNotFoundException
40      * @throws AccessDeniedException
41      * @throws ArchivaSecurityException
42      */
43     public List<String> getObservableRepositoryIds( String principal )
44         throws PrincipalNotFoundException, AccessDeniedException, ArchivaSecurityException;
45     
46     /**
47      * Get the list of writable repository ids for the user specified.
48      * 
49      * @param principal the principle to obtain the observable repository ids from.
50      * @return the list of observable repository ids.
51      * @throws PrincipalNotFoundException
52      * @throws AccessDeniedException
53      * @throws ArchivaSecurityException
54      */
55     public List<String> getManagableRepositoryIds( String principal )
56         throws PrincipalNotFoundException, AccessDeniedException, ArchivaSecurityException;
57     
58     /**
59      * Create any missing repository roles for the provided repository id.
60      * 
61      * @param repoId the repository id to work off of.
62      * @throws ArchivaSecurityException if there was a problem creating the repository roles.
63      */
64     public void createMissingRepositoryRoles( String repoId )
65         throws ArchivaSecurityException;
66     
67     /**
68      * Check if user is authorized to upload artifacts in the repository.
69      * 
70      * @param principal
71      * @param repoId
72      * @return
73      * @throws PrincipalNotFoundException
74      * @throws ArchivaSecurityException
75      */
76     public boolean isAuthorizedToUploadArtifacts( String principal, String repoId)
77         throws PrincipalNotFoundException, ArchivaSecurityException;
78      
79     /**
80      * Check if user is authorized to delete artifacts in the repository.
81      * 
82      * @param principal
83      * @param repoId
84      * @return
85      * @throws RbacManagerException
86      * @throws RbacObjectNotFoundException
87      */
88     public boolean isAuthorizedToDeleteArtifacts( String principal, String repoId )
89         throws RbacManagerException, RbacObjectNotFoundException;
90     
91 }