public enum AuthenticationInfoToken extends Enum<AuthenticationInfoToken> implements HeaderToken
Enum Constant and Description |
---|
CNONCE |
MESSAGE_QOP |
NEXT_NONCE |
NONCE_COUNT |
RESPONSE_AUTH |
Modifier and Type | Method and Description |
---|---|
String | getName() |
boolean | isAllowQuoted() |
static Map<AuthenticationInfoToken,String> | parseHeader(String header) |
static AuthenticationInfoToken | valueOf(String name) Returns the enum constant of this type with the specified name. |
static AuthenticationInfoToken[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final AuthenticationInfoToken NEXT_NONCE
public static final AuthenticationInfoToken MESSAGE_QOP
public static final AuthenticationInfoToken RESPONSE_AUTH
public static final AuthenticationInfoToken CNONCE
public static final AuthenticationInfoToken NONCE_COUNT
public static AuthenticationInfoToken[] values()
for (AuthenticationInfoToken c : AuthenticationInfoToken.values()) System.out.println(c);
public static AuthenticationInfoToken valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getName()
getName
in interface HeaderToken
public boolean isAllowQuoted()
isAllowQuoted
in interface HeaderToken
public static Map<AuthenticationInfoToken,String> parseHeader(String header)
Copyright © 2020 JBoss by Red Hat. All rights reserved.