]> source.dussan.org Git - archiva.git/blob
d194a910d19e556277df7ece781b6d6892fe9ee6
[archiva.git] /
1 package org.apache.archiva.web.xmlrpc.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 java.util.Arrays;
23 import java.util.List;
24
25 /**
26  * ServiceMethodsPermissionsMapping
27  *
28  * Used by the XmlRpcAuthenticationHandler to check the permissions specific to the requested service method.
29  * New methods in exposed services must be registered in the appropriate operation below.
30  *
31  * @version $Id: ServiceMethodsPermissionsMapping.java
32  */
33 public class ServiceMethodsPermissionsMapping
34 {
35     public static final List<String> SERVICE_METHODS_FOR_OPERATION_MANAGE_CONFIGURATION =
36         Arrays.asList( "AdministrationService.configureRepositoryConsumer",
37                        "AdministrationService.configureDatabaseConsumer",
38                        "AdministrationService.executeDatabaseScanner",
39                        "AdministrationService.getAllManagedRepositories",
40                        "AdministrationService.getAllRemoteRepositories",
41                        "AdministrationService.getAllDatabaseConsumers",
42                        "AdministrationService.getAllRepositoryConsumers", 
43                        "AdministrationService.deleteArtifact", 
44                        "AdministrationService.addManagedRepository",
45                        "AdministrationService.deleteManagedRepository", "AdministrationService.getManagedRepository" );
46
47     public static final List<String> SERVICE_METHODS_FOR_OPERATION_RUN_INDEXER =
48         Arrays.asList( "AdministrationService.executeRepositoryScanner" );
49
50     public static final List<String> SERVICE_METHODS_FOR_OPERATION_REPOSITORY_ACCESS =
51         Arrays.asList( "SearchService.quickSearch", "SearchService.getArtifactByChecksum",
52                        "SearchService.getArtifactVersions", "SearchService.getArtifactVersionsByDate",
53                        "SearchService.getDependencies", "SearchService.getDependencyTree",
54                        "SearchService.getDependees" );
55     
56     public static final String PING = "PingService.ping";
57 }