Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public final class

PasswordAuthentication

extends Object
java.lang.Object
   ↳ java.net.PasswordAuthentication

Class Overview

This immutable class is a data structure that encapsulates username and password which is used by the Authenticator class.

Summary

Public Constructors
PasswordAuthentication ( String userName, char[] password)
Creates an instance of a password authentication with a specified username and password.
Public Methods
char[] getPassword ()
Gets a clone of the password stored by this instance.
String getUserName ()
Gets the username stored by this instance.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public PasswordAuthentication ( String userName, char[] password)

Added in API level 1

Creates an instance of a password authentication with a specified username and password.

Parameters
userName the username to store.
password the associated password to store.

Public Methods

public char[] getPassword ()

Added in API level 1

Gets a clone of the password stored by this instance. The user is responsible to finalize the returned array if the password clone is no longer needed.

Returns
  • the copied password.

public String getUserName ()

Added in API level 1

Gets the username stored by this instance.

Returns
  • the stored username.