| |
|
| java.lang.Object com.sun.jbi.common.soap.SOAPWrapper
SOAPWrapper | public class SOAPWrapper (Code) | | This object provides a wrapper for SOAP Messages and also contains status information.
The wrapper allows clients to attach properties to it.
author: Sun Microsystems, Inc. |
SOAPWrapper | public SOAPWrapper(SOAPMessage soapMessage)(Code) | | Creates a new instance of SOAPWrapper.
Parameters: soapMessage - - soap message |
getMessage | public SOAPMessage getMessage()(Code) | | Gets the soap message.
soap message instance |
getProperties | public Iterator getProperties()(Code) | | Get the property list.
a list of property names. |
getServiceURL | public String getServiceURL()(Code) | | Gets Service URL.
service URL |
getStatus | public int getStatus()(Code) | | Gets status.
status information |
getValue | public Object getValue(String propertyName)(Code) | | Sets a property to the SOAP Wrapper.
Parameters: propertyName - property name property value |
setServiceURL | public void setServiceURL(String serviceURL)(Code) | | Sets Service URL.
Parameters: serviceURL - service url. |
setStatus | public void setStatus(int status)(Code) | | Sets status.
Parameters: status - request status |
setValue | public void setValue(String propertyName, Object value)(Code) | | Sets a property to the SOAP Wrapper.
Parameters: propertyName - property name Parameters: value - property value |
|
|
|