Class MethodInfo


  • public final class MethodInfo
    extends Object
    Value object to hold information about a method in a JAX-WS service interface. Method can have many parameters in the signature, but only one response object.
    • Constructor Detail

      • MethodInfo

        public MethodInfo​(String name,
                          String soapAction,
                          org.apache.camel.dataformat.soap.name.TypeInfo[] in,
                          org.apache.camel.dataformat.soap.name.TypeInfo out)
        Initialize
        Parameters:
        name - method name
        soapAction -
        in - input parameters
        out - return types
    • Method Detail

      • getName

        public String getName()
      • getSoapAction

        public String getSoapAction()
      • getIn

        public org.apache.camel.dataformat.soap.name.TypeInfo[] getIn()
      • getOut

        public org.apache.camel.dataformat.soap.name.TypeInfo getOut()
      • getIn

        public org.apache.camel.dataformat.soap.name.TypeInfo getIn​(String typeName)