FileDocCategorySizeDatePackage
PasswordAuthentication.javaAPI DocphoneME MR2 API (J2ME)1989Wed May 02 18:00:30 BST 2007javax.obex

PasswordAuthentication

public class PasswordAuthentication extends Object
This class is defined by the JSR-82 specification Java™ APIs for Bluetooth™ Wireless Technology, Version 1.1.

Fields Summary
private byte[]
password
private byte[]
userName
Constructors Summary
public PasswordAuthentication(byte[] userName, byte[] password)

        if (password == null) {
            throw new NullPointerException("null password");
        }
        this.password = password;
        this.userName = userName;
    
Methods Summary
public byte[]getPassword()

        return password;
    
public byte[]getUserName()

        return userName;