|
||||||||||
| 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.shared.kerberos.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
| Method Summary | |
|---|---|
String |
getMessage()
Get the message associated with this element |
static KerberosMessageType |
getTypeByValue(int value)
Get the instance of a KerberosMessageType from an int value |
int |
getValue()
Get the int value for this element |
static KerberosMessageType |
valueOf(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 TICKET
public static final KerberosMessageType AUTHENTICATOR
public static final KerberosMessageType ENC_TICKET_PART
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_AS_REP_PART
public static final KerberosMessageType ENC_TGS_REP_PART
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(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic int getValue()
public String getMessage()
public static KerberosMessageType getTypeByValue(int value)
value - The int value
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||