javax.obex
Class PasswordAuthentication

java.lang.Object
  extended by javax.obex.PasswordAuthentication

public class PasswordAuthentication
extends java.lang.Object

This class holds user name and password combinations.


Constructor Summary
PasswordAuthentication(byte[] userName, byte[] password)
          Creates a new PasswordAuthentication with the user name and password provided.
 
Method Summary
 byte[] getPassword()
          Retrieves the password.
 byte[] getUserName()
          Retrieves the user name that was specified in the constructor.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PasswordAuthentication

public PasswordAuthentication(byte[] userName,
                              byte[] password)
Creates a new PasswordAuthentication with the user name and password provided.

Parameters:
userName - the user name to include; this may be null
password - the password to include in the response
Throws:
java.lang.NullPointerException - if password is null
Method Detail

getUserName

public byte[] getUserName()
Retrieves the user name that was specified in the constructor. The user name may be null.

Returns:
the user name

getPassword

public byte[] getPassword()
Retrieves the password.

Returns:
the password