Interface Token<TokenType>
-
- Type Parameters:
TokenType- the type of token represented
- All Known Implementing Classes:
AbstractToken
public interface Token<TokenType>An interface for WS-Security tokens.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classToken.ValidationStatusEnumeration of the possible states of token validation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Token.ValidationStatusgetValidationStatus()Get the token validation status.TokenTypegetWrappedToken()Get the underlying data structure of this token.
-
-
-
Method Detail
-
getWrappedToken
TokenType getWrappedToken()
Get the underlying data structure of this token.- Returns:
- the underlying token object
-
getValidationStatus
Token.ValidationStatus getValidationStatus()
Get the token validation status.- Returns:
- the token validation status
-
-