|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<KerberosMessageType>
org.apache.directory.server.kerberos.shared.KerberosMessageType
public enum KerberosMessageType
An enum listing all the Kerberos V5 messages : AS-REQ (10) : Authentication Serveur Request AS-REP (11) : Authentication Serveur Response TGS-REQ (12) : Ticket Granting Server Request TGS-REP (13) : Ticket Granting Server Response AP-REQ (14) : Application Request AP-REP (15) : Application Response KRB-SAFE (20) : Safe (checksummed) application message KRB-PRIV (21) : Private (encrypted) application message KRB-CRED (22) : Private (encrypted) message to forward credentials ENC_AP_REP_PART (27) : Encrypted application reply part ENC_PRIV_PART (28) : Encrypted private message part KRB-ERROR (30) : A kerberos error response
Enum Constant Summary | |
---|---|
AP_REP
|
|
AP_REQ
|
|
AS_REP
|
|
AS_REQ
|
|
ENC_AP_REP_PART
|
|
ENC_PRIV_PART
|
|
KRB_CRED
|
|
KRB_ERROR
|
|
KRB_PRIV
|
|
KRB_SAFE
|
|
TGS_REP
|
|
TGS_REQ
|
Method Summary | |
---|---|
java.lang.String |
getMessage()
Get the message associated with this element |
int |
getOrdinal()
Get the int value for this element |
static KerberosMessageType |
getTypeByOrdinal(int value)
Get the instance of a KerberosMessageType from an int value |
static KerberosMessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static KerberosMessageType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final KerberosMessageType AS_REQ
public static final KerberosMessageType AS_REP
public static final KerberosMessageType TGS_REQ
public static final KerberosMessageType TGS_REP
public static final KerberosMessageType AP_REQ
public static final KerberosMessageType AP_REP
public static final KerberosMessageType KRB_SAFE
public static final KerberosMessageType KRB_PRIV
public static final KerberosMessageType KRB_CRED
public static final KerberosMessageType ENC_AP_REP_PART
public static final KerberosMessageType ENC_PRIV_PART
public static final KerberosMessageType KRB_ERROR
Method Detail |
---|
public static KerberosMessageType[] values()
for (KerberosMessageType c : KerberosMessageType.values()) System.out.println(c);
public static KerberosMessageType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic int getOrdinal()
public java.lang.String getMessage()
public static KerberosMessageType getTypeByOrdinal(int value)
value
- The int value
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |