FileDocCategorySizeDatePackage
AxisServiceConfigImpl.javaAPI DocApache Axis 1.41477Sat Apr 22 18:57:28 BST 2006org.apache.axis

AxisServiceConfigImpl

public class AxisServiceConfigImpl extends Object implements AxisServiceConfig
A simple implementation of AxisServiceConfig.
author
Glen Daniels (gdaniels@apache.org)

Fields Summary
private String
methods
Constructors Summary
Methods Summary
public java.lang.StringgetAllowedMethods()
Get the allowed method names.

return
a space-delimited list of method names which may be called via SOAP.

        return methods;
    
public voidsetAllowedMethods(java.lang.String methods)
Set the allowed method names.

param
methods a String containing a list of all allowed methods

        this.methods = methods;