public class

AmazonWebResourceResponse

extends Object
java.lang.Object
   ↳ com.amazon.android.webkit.AmazonWebResourceResponse

Class Overview

The AmazonWebResourceResponse class is intended to be functionally equivalent to to the WebResourceResponse class. See WebResourceResponse for usage.

Summary

Public Constructors
AmazonWebResourceResponse(String mimeType, String encoding, InputStream data)
The AmazonWebResourceResponse constructor is intended to be functionally equivalent to to the WebResourceResponse(String, String, InputStream) method.
Public Methods
InputStream getData()
The getData() method gets the input stream for the response's data, and is intended to be functionally equivalent to the getData() method.
String getEncoding()
The getEncoding() method gets the encoding for the response, and is intended to be functionally equivalent to the getEncoding() method.
String getMimeType()
The getMimeType() method gets the MIME type for the response, and is intended to be functionally equivalent to the getMimeType() method.
void setData(InputStream data)
The setData() method sets the input stream that provides the response's data, and is intended to be functionally equivalent to the setData(InputStream) method.
void setEncoding(String encoding)
The setEncoding() method sets the encoding for the response, and is intended to be functionally equivalent to the setEncoding(String) method.
void setMimeType(String mimeType)
The setMimeType() method sets the MIME type for the response, and is intended to be functionally equivalent to the setMimeType(String) method.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public AmazonWebResourceResponse (String mimeType, String encoding, InputStream data)

The AmazonWebResourceResponse constructor is intended to be functionally equivalent to to the WebResourceResponse(String, String, InputStream) method. See WebResourceResponse(String, String, InputStream) for usage.

Public Methods

public InputStream getData ()

The getData() method gets the input stream for the response's data, and is intended to be functionally equivalent to the getData() method. See getData() for usage.

public String getEncoding ()

The getEncoding() method gets the encoding for the response, and is intended to be functionally equivalent to the getEncoding() method. See getEncoding() for usage.

public String getMimeType ()

The getMimeType() method gets the MIME type for the response, and is intended to be functionally equivalent to the getMimeType() method. See getMimeType() for usage.

public void setData (InputStream data)

The setData() method sets the input stream that provides the response's data, and is intended to be functionally equivalent to the setData(InputStream) method. See setData(InputStream) for usage.

public void setEncoding (String encoding)

The setEncoding() method sets the encoding for the response, and is intended to be functionally equivalent to the setEncoding(String) method. See setEncoding(String) for usage.

public void setMimeType (String mimeType)

The setMimeType() method sets the MIME type for the response, and is intended to be functionally equivalent to the setMimeType(String) method. See setMimeType(String) for usage.