to top
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.

See Also

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.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.