Class RawPassword
- java.lang.Object
-
- org.wildfly.security.password.interfaces.RawPassword
-
- All Implemented Interfaces:
Serializable,Cloneable,Key,Password
- Direct Known Subclasses:
RawBCryptPassword,RawBSDUnixDESCryptPassword,RawClearPassword,RawDigestPassword,RawMaskedPassword,RawOneTimePassword,RawSaltedSimpleDigestPassword,RawScramDigestPassword,RawSimpleDigestPassword,RawSunUnixMD5CryptPassword,RawUnixDESCryptPassword,RawUnixMD5CryptPassword,RawUnixSHACryptPassword
abstract class RawPassword extends Object implements Password
-
-
Field Summary
Fields Modifier and Type Field Description private Stringalgorithmprivate static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description RawPassword(String algorithm)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract RawPasswordclone()Creates and returns a copy of thisPassword.abstract booleanequals(Object obj)StringgetAlgorithm()byte[]getEncoded()StringgetFormat()abstract inthashCode()-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wildfly.security.password.Password
castAndApply, castAndApply, castAs, castAs, getParameterSpec, impliesParameters
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
algorithm
private final String algorithm
-
-
Constructor Detail
-
RawPassword
RawPassword(String algorithm)
-
-
Method Detail
-
getAlgorithm
public String getAlgorithm()
- Specified by:
getAlgorithmin interfaceKey
-
getEncoded
public byte[] getEncoded()
- Specified by:
getEncodedin interfaceKey
-
clone
public abstract RawPassword clone()
Description copied from interface:PasswordCreates and returns a copy of thisPassword.
-
-