Methods Summary |
---|
public javax.xml.soap.SOAPMessage | getMessage()Gets the soap message.
return mMessage;
|
public java.util.Iterator | getProperties()Get the property list.
return mMap.keySet().iterator();
|
public java.lang.String | getServiceURL()Gets Service URL.
return mServiceURL;
|
public int | getStatus()Gets status.
return mStatus;
|
public java.lang.Object | getValue(java.lang.String propertyName)Sets a property to the SOAP Wrapper.
return mMap.get(propertyName);
|
public void | setServiceURL(java.lang.String serviceURL)Sets Service URL.
mServiceURL = serviceURL;
|
public void | setStatus(int status)Sets status.
mStatus = status;
|
public void | setValue(java.lang.String propertyName, java.lang.Object value)Sets a property to the SOAP Wrapper.
mMap.put(propertyName, value);
|