org.eclipse.ohf.wado.client
Interface WADOResponse

All Known Implementing Classes:
WADOResponseImpl

public interface WADOResponse


Method Summary
 void doneReading()
           
 WADORequest getProcessedWadoRequest()
          The method will return the WADORequest object that contains the information sent to the WADO server in the request.
 java.lang.String getResponseMimeType()
          The method will return the MIME type of the data returned from the WADO server.
 java.io.InputStream getRetrievedData()
          The input stream to the data returned from the WADO server.
 

Method Detail

getResponseMimeType

java.lang.String getResponseMimeType()
The method will return the MIME type of the data returned from the WADO server.

Returns:
The WADO response MIME type

getRetrievedData

java.io.InputStream getRetrievedData()
The input stream to the data returned from the WADO server. This data is the response of the WADO request and its MIME type can be retrieved by calling the getResponseMimeType() method.

Returns:
The InputStream of data retrieved from the WADO server

getProcessedWadoRequest

WADORequest getProcessedWadoRequest()
The method will return the WADORequest object that contains the information sent to the WADO server in the request.

Returns:
The WADORequest object of the request that this is its response

doneReading

void doneReading()