Package org.dogtagpki.tps.msg
Enum TPSMessage.MsgType
- java.lang.Object
-
- java.lang.Enum<TPSMessage.MsgType>
-
- org.dogtagpki.tps.msg.TPSMessage.MsgType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TPSMessage.MsgType>
- Enclosing class:
- TPSMessage
public static enum TPSMessage.MsgType extends java.lang.Enum<TPSMessage.MsgType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TPSMessage.MsgType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TPSMessage.MsgType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MSG_UNDEFINED
public static final TPSMessage.MsgType MSG_UNDEFINED
-
MSG_BEGIN_OP
public static final TPSMessage.MsgType MSG_BEGIN_OP
-
MSG_LOGIN_REQUEST
public static final TPSMessage.MsgType MSG_LOGIN_REQUEST
-
MSG_LOGIN_RESPONSE
public static final TPSMessage.MsgType MSG_LOGIN_RESPONSE
-
MSG_SECUREID_REQUEST
public static final TPSMessage.MsgType MSG_SECUREID_REQUEST
-
MSG_SECUREID_RESPONSE
public static final TPSMessage.MsgType MSG_SECUREID_RESPONSE
-
MSG_ASQ_REQUEST
public static final TPSMessage.MsgType MSG_ASQ_REQUEST
-
MSG_ASQ_RESPONSE
public static final TPSMessage.MsgType MSG_ASQ_RESPONSE
-
MSG_NEW_PIN_REQUEST
public static final TPSMessage.MsgType MSG_NEW_PIN_REQUEST
-
MSG_NEW_PIN_RESPONSE
public static final TPSMessage.MsgType MSG_NEW_PIN_RESPONSE
-
MSG_TOKEN_PDU_REQUEST
public static final TPSMessage.MsgType MSG_TOKEN_PDU_REQUEST
-
MSG_TOKEN_PDU_RESPONSE
public static final TPSMessage.MsgType MSG_TOKEN_PDU_RESPONSE
-
MSG_END_OP
public static final TPSMessage.MsgType MSG_END_OP
-
MSG_STATUS_UPDATE_REQUEST
public static final TPSMessage.MsgType MSG_STATUS_UPDATE_REQUEST
-
MSG_STATUS_UPDATE_RESPONSE
public static final TPSMessage.MsgType MSG_STATUS_UPDATE_RESPONSE
-
MSG_EXTENDED_LOGIN_REQUEST
public static final TPSMessage.MsgType MSG_EXTENDED_LOGIN_REQUEST
-
MSG_EXTENDED_LOGIN_RESPONSE
public static final TPSMessage.MsgType MSG_EXTENDED_LOGIN_RESPONSE
-
-
Method Detail
-
values
public static TPSMessage.MsgType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TPSMessage.MsgType c : TPSMessage.MsgType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TPSMessage.MsgType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-