javax.obex.PasswordAuthentication Maven / Gradle / Ivy
/**
* BlueCove - Java library for Bluetooth
*
* Java docs licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
* (c) Copyright 2001, 2002 Motorola, Inc. ALL RIGHTS RESERVED.
*
* @version $Id: PasswordAuthentication.java 965 2007-08-22 21:35:57Z skarzhevskyy $
*/
package javax.obex;
import com.intel.bluetooth.Utils;
/**
* This class holds user name and password combinations.
*
* @version 1.0 February 11, 2002
*/
public class PasswordAuthentication {
private byte[] userName;
private byte[] password;
/**
* Creates a new PasswordAuthentication
with the user name
* and password provided.
*
* @param userName
* the user name to include; this may be null
*
* @param password
* the password to include in the response
*
* @exception NullPointerException
* if password
is null
*/
public PasswordAuthentication(byte[] userName, byte[] password) {
if (password == null) {
throw new NullPointerException("password is null");
}
this.userName = Utils.clone(userName);
this.password = Utils.clone(password);
}
/**
* Retrieves the user name that was specified in the constructor. The user
* name may be null
.
*
* @return the user name
*/
public byte[] getUserName() {
return Utils.clone(this.userName);
}
/**
* Retrieves the password.
*
* @return the password
*/
public byte[] getPassword() {
return Utils.clone(this.password);
}
}