Package de.elo.mover.main.mail
Enum Class MailProcessorConfig.TextKeys
- All Implemented Interfaces:
Serializable,Comparable<MailProcessorConfig.TextKeys>,Constable
- Enclosing class:
MailProcessorConfig
Textschlüssel für die Fehleranzeige im E-Mail Body.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionE-Mail hat keinen Body.Entschlüsselung deaktiviertJRE Einschränkung zur SchlüssellängeKein Keystore angegeben.Keystore angegeben, aber kann nicht geöffnet werden.Passwortabfrage für den Keystore abgebrochen.PrivateKey konnte nicht geöffnet werden.Keine Zertifikate für die E-Mail Empfänger gefunden.Weitere Fehler bei der Entschlüsselung -
Method Summary
Modifier and TypeMethodDescriptionstatic MailProcessorConfig.TextKeysReturns the enum constant of this class with the specified name.static MailProcessorConfig.TextKeys[]values()Returns an array containing the constants of this enum class, 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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-