public abstract class

AmazonHttpAuthHandler

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

Class Overview

The AmazonHttpAuthHandler class is intended to be functionally equivalent to to the HttpAuthHandler class. See HttpAuthHandler for usage

Summary

Public Constructors
AmazonHttpAuthHandler()
Public Methods
void cancel()
The cancel() method instructs the webview to cancel authentication, and is intended to be functionally equivalent to the cancel() method.
void proceed(String username, String password)
The proceed() method instructs the webview to proceed with authentication, and is intended to be functionally equivalent to the proceed(String, String) method.
boolean useHttpAuthUsernamePassword()
The useHttpAuthUsernamePassword() method gets whether credentials are stored for the current host, and is intended to be functionally equivalent to to the useHttpAuthUsernamePassword() method.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public AmazonHttpAuthHandler ()

Public Methods

public void cancel ()

The cancel() method instructs the webview to cancel authentication, and is intended to be functionally equivalent to the cancel() method. See cancel() for usage.

public void proceed (String username, String password)

The proceed() method instructs the webview to proceed with authentication, and is intended to be functionally equivalent to the proceed(String, String) method. See proceed(String, String) for usage.

public boolean useHttpAuthUsernamePassword ()

The useHttpAuthUsernamePassword() method gets whether credentials are stored for the current host, and is intended to be functionally equivalent to to the useHttpAuthUsernamePassword() method. See useHttpAuthUsernamePassword() for usage.