Package tech.greenfield.vertx.irked.auth
Class NegotiateAuthorizationToken
- java.lang.Object
-
- tech.greenfield.vertx.irked.auth.AuthorizationToken
-
- tech.greenfield.vertx.irked.auth.NegotiateAuthorizationToken
-
public class NegotiateAuthorizationToken extends AuthorizationToken
Implementation of the standard RFC 4559 Negotiate authentication scheme token This implementation does not decode the GSS API data and it is available as plain text from theAuthorizationToken.getToken()method.- Author:
- odeda
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class tech.greenfield.vertx.irked.auth.AuthorizationToken
AuthorizationToken.TokenTypes
-
-
Constructor Summary
Constructors Constructor Description NegotiateAuthorizationToken()NegotiateAuthorizationToken(String token)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleansupports(String type)Check whether an AuthorizationToken implementation supports the speciefied IANA HTTP Authentication Scheme Name
-
-
-
Constructor Detail
-
NegotiateAuthorizationToken
public NegotiateAuthorizationToken()
-
NegotiateAuthorizationToken
public NegotiateAuthorizationToken(String token)
-
-
Method Detail
-
supports
protected boolean supports(String type)
Description copied from class:AuthorizationTokenCheck whether an AuthorizationToken implementation supports the speciefied IANA HTTP Authentication Scheme Name- Overrides:
supportsin classAuthorizationToken- Parameters:
type- IANA HTTP Authentication Scheme Name- Returns:
- whether this implementation supports the specified name
-
-