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>
- Enclosing class:
- MailProcessorConfig
public static enum MailProcessorConfig.TextKeys extends java.lang.Enum<MailProcessorConfig.TextKeys>
Textschlüssel für die Fehleranzeige im EMail-Body.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NO_MAIL_BODYE-Mail hat keinen Body.SMIME_DEACTIVATEDEntschlüsselung deaktiviertSMIME_JCE_UNLIMITED_STRENGTH_ERRORJRE Einschränkung zur SchlüssellängeSMIME_KEYSTOREFILE_NOT_CONFIGUREDKein Keystore angegeben.SMIME_KEYSTOREFILE_NOT_EXISTINGKeystore angegeben, aber kann nicht geöffnet werden.SMIME_KEYSTOREFILE_OPEN_ABORTEDPasswortabfrage für den Keystore abgebrochen.SMIME_NO_PRIVATE_KEYPrivateKey konnte nicht geöffnet werden.SMIME_NO_RECEIVER_CERT_FOUNDKeine Zertifikate für die E-Mail Empfänger gefunden.SMIME_UNKNOWN_ERRORWeitere Fehler bei der Entschlüsselung
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MailProcessorConfig.TextKeysvalueOf(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 Detail
-
SMIME_KEYSTOREFILE_NOT_CONFIGURED
public static final MailProcessorConfig.TextKeys SMIME_KEYSTOREFILE_NOT_CONFIGURED
Kein Keystore angegeben.
-
SMIME_KEYSTOREFILE_NOT_EXISTING
public static final MailProcessorConfig.TextKeys SMIME_KEYSTOREFILE_NOT_EXISTING
Keystore angegeben, aber kann nicht geöffnet werden.
-
SMIME_KEYSTOREFILE_OPEN_ABORTED
public static final MailProcessorConfig.TextKeys SMIME_KEYSTOREFILE_OPEN_ABORTED
Passwortabfrage für den Keystore abgebrochen.
-
SMIME_NO_RECEIVER_CERT_FOUND
public static final MailProcessorConfig.TextKeys SMIME_NO_RECEIVER_CERT_FOUND
Keine Zertifikate für die E-Mail Empfänger gefunden.
-
SMIME_JCE_UNLIMITED_STRENGTH_ERROR
public static final MailProcessorConfig.TextKeys SMIME_JCE_UNLIMITED_STRENGTH_ERROR
JRE Einschränkung zur Schlüssellänge
-
SMIME_UNKNOWN_ERROR
public static final MailProcessorConfig.TextKeys SMIME_UNKNOWN_ERROR
Weitere Fehler bei der Entschlüsselung
-
SMIME_NO_PRIVATE_KEY
public static final MailProcessorConfig.TextKeys SMIME_NO_PRIVATE_KEY
PrivateKey konnte nicht geöffnet werden. (z.B. PW Abgebrochen)
-
SMIME_DEACTIVATED
public static final MailProcessorConfig.TextKeys SMIME_DEACTIVATED
Entschlüsselung deaktiviert
-
NO_MAIL_BODY
public static final MailProcessorConfig.TextKeys NO_MAIL_BODY
E-Mail hat keinen Body.
-
-
Method Detail
-
values
public static MailProcessorConfig.TextKeys[] 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 (MailProcessorConfig.TextKeys c : MailProcessorConfig.TextKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MailProcessorConfig.TextKeys 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
-
-