public enum EncryptionConfiguration extends java.lang.Enum<EncryptionConfiguration>
Gibt die lokale Konfiguration der Verschlüsselung an. Eine Verschlüsselung kommt bei der Authentifizierung immer zustande und wird nur dann aufgelößt, wenn beie Kommunikationspartner den Wunsch äußern, nicht verschlüsseln zu wollen (Wert automatisch bei lokaler Verbindung oder nein).
Enum Constant and Description |
---|
AlwaysEncrypted
Es soll immer verschlüsselt werden
|
Auto
Es soll immer verschlüsselt werden, außer es handelt sich um eine lokale (Loopback-) Verbindung
|
PreferNoEncryption
Der Kommunikationspartner möchte nie verschlüsseln
|
Modifier and Type | Method and Description |
---|---|
boolean |
shouldDisable(boolean isLoopbackConnection) |
java.lang.String |
toString() |
static EncryptionConfiguration |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionConfiguration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionConfiguration AlwaysEncrypted
public static final EncryptionConfiguration Auto
public static final EncryptionConfiguration PreferNoEncryption
public static EncryptionConfiguration[] values()
for (EncryptionConfiguration c : EncryptionConfiguration.values()) System.out.println(c);
public static EncryptionConfiguration 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<EncryptionConfiguration>
public boolean shouldDisable(boolean isLoopbackConnection)