Coverage Report - org.apache.archiva.web.xmlrpc.security.ServiceMethodsPermissionsMapping
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceMethodsPermissionsMapping
0%
0/4
N/A
0
 
 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  0
 public class ServiceMethodsPermissionsMapping
 34  
 {
 35  0
     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" );
 43  
 
 44  0
     public static final List<String> SERVICE_METHODS_FOR_OPERATION_RUN_INDEXER =
 45  
         Arrays.asList( "AdministrationService.executeRepositoryScanner" );
 46  
 
 47  0
     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" );
 52  
     
 53  
     public static final String PING = "PingService.ping";
 54  
 }