com.nsftools.jurst
Class MethodInfo
java.lang.Object
com.nsftools.jurst.MethodInfo
- Serializable
public class MethodInfo
extends java.lang.Object
implements Serializable
The
MethodInfo
class is a simple container
for information about a web service method, as retrieved from
a WSDL file. The information is primarily the information used
to build a proper SOAP call using the org.apache.soap classes.
This is used for passing around methods in the SoapHelper class.
The class also implements Serializable, in case you want to get
the MethodInfo from a WSDL file and store/retrieve it locally --
this is a lot more efficient than having to access and parse the
WSDL file every single time you want to call a method.
Version:
- Julian Robichaux
getBindingName
public String getBindingName()
- Returns the bindingName.
getInputParts
public Map getInputParts()
- Returns the inputParts.
getMethodName
public String getMethodName()
- Returns the methodName.
getNamespace
public String getNamespace()
- Returns the namespace.
getOutputParts
public Map getOutputParts()
- Returns the outputParts.
getParamList
public List getParamList()
getPortName
public String getPortName()
- Returns the portName.
getServiceName
public String getServiceName()
- Returns the serviceName.
getSoapAction
public String getSoapAction()
- Returns the soapAction.
getTargetURL
public String getTargetURL()
- Returns the targetURL.
setBindingName
public void setBindingName(String bindingName)
bindingName
- The bindingName to set.
setInputParts
public void setInputParts(Map inputParts)
inputParts
- The inputParts to set.
setMethodName
public void setMethodName(String methodName)
methodName
- The methodName to set.
setNamespace
public void setNamespace(String namespace)
namespace
- The namespace to set.
setOutputParts
public void setOutputParts(Map outputParts)
outputParts
- The outputParts to set.
setParamList
public void setParamList(List paramList)
paramList
- The paramList to set.
setPortName
public void setPortName(String portName)
portName
- The portName to set.
setServiceName
public void setServiceName(String serviceName)
serviceName
- The serviceName to set.
setSoapAction
public void setSoapAction(String soapAction)
soapAction
- The soapAction to set.
setTargetURL
public void setTargetURL(String targetURL)
targetURL
- The targetURL to set.
toString
public String toString()