Package de.elo.mover.main.mail
Enum MailProcessorConfig.TextKeys
java.lang.Object
java.lang.Enum<MailProcessorConfig.TextKeys>
de.elo.mover.main.mail.MailProcessorConfig.TextKeys
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MailProcessorConfig.TextKeys>
,java.lang.constant.Constable
- Enclosing class:
- MailProcessorConfig
public static enum MailProcessorConfig.TextKeys extends java.lang.Enum<MailProcessorConfig.TextKeys>
Textschlüssel für die Fehleranzeige im EMail-Body.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_MAIL_BODY
E-Mail hat keinen Body.SMIME_DEACTIVATED
Entschlüsselung deaktiviertSMIME_JCE_UNLIMITED_STRENGTH_ERROR
JRE Einschränkung zur SchlüssellängeSMIME_KEYSTOREFILE_NOT_CONFIGURED
Kein Keystore angegeben.SMIME_KEYSTOREFILE_NOT_EXISTING
Keystore angegeben, aber kann nicht geöffnet werden.SMIME_KEYSTOREFILE_OPEN_ABORTED
Passwortabfrage für den Keystore abgebrochen.SMIME_NO_PRIVATE_KEY
PrivateKey konnte nicht geöffnet werden.SMIME_NO_RECEIVER_CERT_FOUND
Keine Zertifikate für die E-Mail Empfänger gefunden.SMIME_UNKNOWN_ERROR
Weitere Fehler bei der Entschlüsselung -
Method Summary
Modifier and Type Method Description static MailProcessorConfig.TextKeys
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MailProcessorConfig.TextKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SMIME_KEYSTOREFILE_NOT_CONFIGURED
Kein Keystore angegeben. -
SMIME_KEYSTOREFILE_NOT_EXISTING
Keystore angegeben, aber kann nicht geöffnet werden. -
SMIME_KEYSTOREFILE_OPEN_ABORTED
Passwortabfrage für den Keystore abgebrochen. -
SMIME_NO_RECEIVER_CERT_FOUND
Keine Zertifikate für die E-Mail Empfänger gefunden. -
SMIME_JCE_UNLIMITED_STRENGTH_ERROR
JRE Einschränkung zur Schlüssellänge -
SMIME_UNKNOWN_ERROR
Weitere Fehler bei der Entschlüsselung -
SMIME_NO_PRIVATE_KEY
PrivateKey konnte nicht geöffnet werden. (z.B. PW Abgebrochen) -
SMIME_DEACTIVATED
Entschlüsselung deaktiviert -
NO_MAIL_BODY
E-Mail hat keinen Body.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-