public enum AuthorizationType extends Enum<AuthorizationType>
Enum Constant and Description |
---|
AD_ETYPE_NEGOTIATION
Constant for the "sesame" authorization type.
|
AD_IF_RELEVANT
Constant for the "if relevant" authorization type.
|
AD_IN_TICKET_EXTENSIONS
Constant for the "in ticket extensions" authorization type.
|
AD_INTENDED_FOR_APPLICATION_CLASS
Constant for the "intended for application class" authorization type.
|
AD_INTENDED_FOR_SERVER
Constant for the "intended for server" authorization type.
|
AD_KDC_ISSUED
Constant for the "kdc issued" authorization type.
|
AD_MANDATORY_FOR_KDC
Constant for the "mandatory-for-kdc" authorization type.
|
AD_MANDATORY_TICKET_EXTENSIONS
Constant for the "mandatory ticket extensions" authorization type.
|
AD_OR
Constant for the "or" authorization type.
|
AD_OSF_DCE_PKI_CERTID
Constant for the "OSF-DCE pki certid" authorization type.
|
AD_WIN2K_PAC
Constant for the "sesame" authorization type.
|
NULL
Constant for the "null" authorization type.
|
OSF_DCE
Constant for the "OSF DCE" authorization type.
|
SESAME
Constant for the "sesame" authorization type.
|
Modifier and Type | Method and Description |
---|---|
static AuthorizationType |
getTypeByValue(int type)
Returns the authorization type when specified by its ordinal.
|
int |
getValue()
Returns the number associated with this authorization type.
|
String |
toString() |
static AuthorizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationType NULL
public static final AuthorizationType AD_IF_RELEVANT
public static final AuthorizationType AD_INTENDED_FOR_SERVER
public static final AuthorizationType AD_INTENDED_FOR_APPLICATION_CLASS
public static final AuthorizationType AD_KDC_ISSUED
public static final AuthorizationType AD_OR
public static final AuthorizationType AD_MANDATORY_TICKET_EXTENSIONS
public static final AuthorizationType AD_IN_TICKET_EXTENSIONS
public static final AuthorizationType AD_MANDATORY_FOR_KDC
public static final AuthorizationType OSF_DCE
public static final AuthorizationType SESAME
public static final AuthorizationType AD_OSF_DCE_PKI_CERTID
public static final AuthorizationType AD_WIN2K_PAC
public static final AuthorizationType AD_ETYPE_NEGOTIATION
public static AuthorizationType[] values()
for (AuthorizationType c : AuthorizationType.values()) System.out.println(c);
public static AuthorizationType 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 static AuthorizationType getTypeByValue(int type)
type
- The numeric valuepublic int getValue()
public String toString()
toString
in class Enum<AuthorizationType>
Object.toString()
Copyright © 2003–2020 The Apache Software Foundation. All rights reserved.