]> source.dussan.org Git - archiva.git/blob
9b3840ac67156f5de09e8fc619263a98e28bdb7a
[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      * Create any missing repository roles for the provided repository id.
48      * 
49      * @param repoId the repository id to work off of.
50      * @throws ArchivaSecurityException if there was a problem creating the repository roles.
51      */
52     public void createMissingRepositoryRoles( String repoId )
53         throws ArchivaSecurityException;
54     
55     /**
56      * Check if user is authorized to upload artifacts in the repository.
57      * 
58      * @param principal
59      * @param repoId
60      * @return
61      * @throws PrincipalNotFoundException
62      * @throws ArchivaSecurityException
63      */
64     public boolean isAuthorizedToUploadArtifacts( String principal, String repoId)
65         throws PrincipalNotFoundException, ArchivaSecurityException;
66      
67     /**
68      * Check if user is authorized to delete artifacts in the repository.
69      * 
70      * @param principal
71      * @param repoId
72      * @return
73      * @throws RbacManagerException
74      * @throws RbacObjectNotFoundException
75      */
76     public boolean isAuthorizedToDeleteArtifacts( String principal, String repoId )
77         throws RbacManagerException, RbacObjectNotFoundException;
78     
79 }