Package com.mendix.systemwideinterfaces
Interface IWebserviceResponse
-
public interface IWebserviceResponse
Represents a web-service response.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
close()
Closes the response and releases all held resources.javax.xml.transform.sax.SAXSource
getSaxSource()
Deprecated.Use getStream instead.java.io.InputStream
getStream()
Returns an input-stream for accessing the response contents.
-
-
-
Method Detail
-
close
void close()
Closes the response and releases all held resources.
-
getStream
java.io.InputStream getStream()
Returns an input-stream for accessing the response contents.- Returns:
- the input-stream
-
getSaxSource
@Deprecated javax.xml.transform.sax.SAXSource getSaxSource()
Deprecated.Use getStream instead.Returns a source for accessing the response contents.
-
-