org.apache.camel.dataformat.soap.name
Class MethodInfo

java.lang.Object
  extended by org.apache.camel.dataformat.soap.name.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 Summary
MethodInfo(String name, String soapAction, org.apache.camel.dataformat.soap.name.TypeInfo[] in, org.apache.camel.dataformat.soap.name.TypeInfo out)
          Initialize
 
Method Summary
 org.apache.camel.dataformat.soap.name.TypeInfo[] getIn()
           
 org.apache.camel.dataformat.soap.name.TypeInfo getIn(String typeName)
           
 String getName()
           
 org.apache.camel.dataformat.soap.name.TypeInfo getOut()
           
 String getSoapAction()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

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)


Apache Camel