public enum C2CMode extends java.lang.Enum<C2CMode>
C2CMode determines the type of authentication: • one-sided, mutually • with or without negotiation of keys for a secure channel • Authentication type such as Role Authentication or Device Authentication(according to the CV certificates contained on the smart cards). • Optimized activation / authentication of the eGK in which the eGK is activated by the source but authenticated by the connector.
| Enum Constant and Description |
|---|
MUTUALLY |
| Modifier and Type | Method and Description |
|---|---|
static C2CMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static C2CMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final C2CMode MUTUALLY
public static C2CMode[] values()
for (C2CMode c : C2CMode.values()) System.out.println(c);
public static C2CMode 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 namejava.lang.NullPointerException - if the argument is null