Package org.ldaptive
Class Credential
- java.lang.Object
-
- org.ldaptive.Credential
-
public final class Credential extends Object
Provides convenience methods for converting the various types of passwords into a byte array.
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]
bytes
Credential stored as a byte array.
-
Constructor Summary
Constructors Constructor Description Credential(byte[] password)
Creates a new credential.Credential(char[] password)
Creates a new credential.Credential(String password)
Creates a new credential.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Credential
copy(Credential credential)
Returns a credential initialized with the supplied credential.byte[]
getBytes()
Returns this credential as a byte array.String
getString()
Returns this credential as a string.boolean
isEmpty()
Returns whether the underlying byte array is empty.boolean
isNull()
Returns whether the underlying byte array is null.String
toString()
-
-
-
Constructor Detail
-
Credential
public Credential(String password)
Creates a new credential.- Parameters:
password
- converted from UTF-8 to a byte array
-
Credential
public Credential(char[] password)
Creates a new credential.- Parameters:
password
- converted from UTF-8 to a byte array
-
Credential
public Credential(byte[] password)
Creates a new credential.- Parameters:
password
- to store
-
-
Method Detail
-
getBytes
public byte[] getBytes()
Returns this credential as a byte array.- Returns:
- credential bytes
-
getString
public String getString()
Returns this credential as a string.- Returns:
- credential string
-
isNull
public boolean isNull()
Returns whether the underlying byte array is null.- Returns:
- whether the underlying byte array is null
-
isEmpty
public boolean isEmpty()
Returns whether the underlying byte array is empty.- Returns:
- whether the underlying byte array is empty
-
copy
public static Credential copy(Credential credential)
Returns a credential initialized with the supplied credential.- Parameters:
credential
- to read properties from- Returns:
- credential
-
-