FileDocCategorySizeDatePackage
NullProvider.javaAPI DocApache Axis 1.42884Sat Apr 22 18:57:28 BST 2006org.apache.axis.configuration

NullProvider

public class NullProvider extends Object implements org.apache.axis.EngineConfiguration
A do-nothing ConfigurationProvider
author
Glen Daniels (gdaniels@apache.org)

Fields Summary
Constructors Summary
Methods Summary
public voidconfigureEngine(org.apache.axis.AxisEngine engine)

    
public java.util.IteratorgetDeployedServices()
Get an enumeration of the services deployed to this engine

        return null;
    
public java.util.HashtablegetGlobalOptions()

        return null;
    
public org.apache.axis.HandlergetGlobalRequest()

        return null;
    
public org.apache.axis.HandlergetGlobalResponse()

        return null;
    
public org.apache.axis.HandlergetHandler(javax.xml.namespace.QName qname)

        return null;
    
public java.util.ListgetRoles()
Get a list of roles that this engine plays globally. Services within the engine configuration may also add additional roles.

return
a List of the roles for this engine

        return null;
    
public org.apache.axis.handlers.soap.SOAPServicegetService(javax.xml.namespace.QName qname)

        return null;
    
public org.apache.axis.handlers.soap.SOAPServicegetServiceByNamespaceURI(java.lang.String namespace)

        return null;
    
public org.apache.axis.HandlergetTransport(javax.xml.namespace.QName qname)

        return null;
    
public org.apache.axis.encoding.TypeMappinggetTypeMapping(java.lang.String encodingStyle)

        return null;
    
public org.apache.axis.encoding.TypeMappingRegistrygetTypeMappingRegistry()

        return null;
    
public voidwriteEngineConfig(org.apache.axis.AxisEngine engine)