Interface Password
-
public interface PasswordRepresents plain text password and pre hashed (username + realmname + password) password.- Author:
- K.Venuopal@sun.com
-
-
Field Summary
Fields Modifier and Type Field Description static intHASHEDstatic intPLAIN_TEXT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetType()returns PLAIN_TEXT or HASHED.byte[]getValue()returns password.
-
-
-
Field Detail
-
PLAIN_TEXT
static final int PLAIN_TEXT
- See Also:
- Constant Field Values
-
HASHED
static final int HASHED
- See Also:
- Constant Field Values
-
-