1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the docs/licenses/apache-1.1.txt file. 7 */ 8 9 package org.jboss.axis; 10 11 /** 12 * If a Java class which acts as the target for an Axis service 13 * implements this interface, it may convey metadata about its 14 * configuration to the Axis engine. 15 * 16 * @author Glen Daniels (gdaniels@macromedia.com) 17 */ 18 public interface AxisServiceConfig 19 { 20 /** 21 * Get the allowed method names. 22 * 23 * @return a space-delimited list of method names which may be called 24 * via SOAP. 25 */ 26 public String getAllowedMethods(); 27 } 28