@Exported public enum InquireType extends Enum<InquireType>
ExtendedGSSContext.inquireSecContext(com.sun.security.jgss.InquireType)
Enum Constant and Description |
---|
KRB5_GET_AUTHTIME
Attribute type for retrieving the authtime in the service ticket
of an established Kerberos 5 security context.
|
KRB5_GET_AUTHZ_DATA
Attribute type for retrieving the authorization data in the
service ticket of an established Kerberos 5 security context.
|
KRB5_GET_SESSION_KEY
Attribute type for retrieving the session key of an
established Kerberos 5 security context.
|
KRB5_GET_TKT_FLAGS
Attribute type for retrieving the service ticket flags of an
established Kerberos 5 security context.
|
Modifier and Type | Method and Description |
---|---|
static InquireType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InquireType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InquireType KRB5_GET_SESSION_KEY
public static final InquireType KRB5_GET_TKT_FLAGS
public static final InquireType KRB5_GET_AUTHZ_DATA
public static final InquireType KRB5_GET_AUTHTIME
public static InquireType[] values()
for (InquireType c : InquireType.values()) System.out.println(c);
public static InquireType 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 null
Copyright © 2000, 2015, Oracle and/or its affiliates. All rights reserved.