1 package org.apache.archiva.web.xmlrpc.security;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import java.util.Arrays;
23 import java.util.List;
26 * ServiceMethodsPermissionsMapping
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.
31 * @version $Id: ServiceMethodsPermissionsMapping.java
33 public class ServiceMethodsPermissionsMapping
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", "AdministrationService.deleteArtifact" );
44 public static final List<String> SERVICE_METHODS_FOR_OPERATION_RUN_INDEXER =
45 Arrays.asList( "AdministrationService.executeRepositoryScanner" );
47 public static final List<String> SERVICE_METHODS_FOR_OPERATION_REPOSITORY_ACCESS =
48 Arrays.asList( "SearchService.quickSearch", "SearchService.getArtifactByChecksum",
49 "SearchService.getArtifactVersions", "SearchService.getArtifactVersionsByDate",
50 "SearchService.getDependencies", "SearchService.getDependencyTree",
51 "SearchService.getDependees" );
53 public static final String PING = "PingService.ping";