Package de.willuhn.jameica.hbci
Enum MetaKey
- java.lang.Object
-
- java.lang.Enum<MetaKey>
-
- de.willuhn.jameica.hbci.MetaKey
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESS_ID
KONTOAUSZUG_IGNORE_FORMAT
Soll das Abrufen der Kontoauszuege auch dann erlaubt werden, wenn PDF nicht unterstuetzt wird?KONTOAUSZUG_INTERVAL
Abruf-Intervall fuer die Kontoauszuege im PDF-Format.KONTOAUSZUG_INTERVAL_LAST
Datum des letzten Abrufs der Kontoauszuege im PDF-Format.KONTOAUSZUG_MARK_READ
Sollen Kontoauszuege beim Abruf sofort als gelesen markiert werden?KONTOAUSZUG_SEND_RECEIPT
Sollen die Empfangsquittungen automatisch gesendet werden?KONTOAUSZUG_STORE_MESSAGING
True, wenn die Kontoauszuege per Messaging-Plugin gespeichert werden sollen.KONTOAUSZUG_STORE_PATH
Ordner, in dem die Kontoauszuege erstellt werden sollen.KONTOAUSZUG_TEMPLATE_NAME
Template fuer den Dateinamen.KONTOAUSZUG_TEMPLATE_PATH
Template fuer den Unter-Ordner.REMINDER_CREATOR
REMINDER_TEMPLATE
REMINDER_UUID
SEPA_BATCHBOOK
Batch-Book-Flag.SEPA_CREDITOR_ID
Gläubiger-Identifikation.SEPA_MANDATE_ID
SEPA-Mandatsreferenz.SEPA_MANDATE_SIGDATE
Signatur-Datum des Mandats.SEPA_SEQUENCE_CODE
SEPA-Lastschrift Sequenz-Typ.TAN_CANCEL
TAN-Eingabe abgebrochenUMSATZ_CAMT
Legt fest, ob CAMT fuer den Umsatz-Abruf verwendet werden soll.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
get(HibiscusDBObject o)
Liefert den Wert des Meta-Keys fuer das Objekt.java.lang.String
get(HibiscusDBObject o, java.lang.String suffix)
Liefert den Wert des Meta-Keys fuer das Objekt.java.lang.String
getDefault()
Liefert den Default-Wert.java.lang.String
getDescription()
Liefert einen optionalen Beschreibungstext zu dem Meta-Key.java.lang.String
getName()
Liefert den Namen des Meta-Keys.void
set(HibiscusDBObject o, java.lang.String value)
Speichert den Wert des Meta-Keys fuer das Objekt.void
set(HibiscusDBObject o, java.lang.String suffix, java.lang.String value)
Speichert den Wert des Meta-Keys fuer das Objekt.static MetaKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetaKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REMINDER_UUID
public static final MetaKey REMINDER_UUID
-
REMINDER_TEMPLATE
public static final MetaKey REMINDER_TEMPLATE
-
REMINDER_CREATOR
public static final MetaKey REMINDER_CREATOR
-
ADDRESS_ID
public static final MetaKey ADDRESS_ID
-
SEPA_MANDATE_ID
public static final MetaKey SEPA_MANDATE_ID
SEPA-Mandatsreferenz.
-
SEPA_MANDATE_SIGDATE
public static final MetaKey SEPA_MANDATE_SIGDATE
Signatur-Datum des Mandats.
-
SEPA_SEQUENCE_CODE
public static final MetaKey SEPA_SEQUENCE_CODE
SEPA-Lastschrift Sequenz-Typ.
-
SEPA_CREDITOR_ID
public static final MetaKey SEPA_CREDITOR_ID
Gläubiger-Identifikation.
-
SEPA_BATCHBOOK
public static final MetaKey SEPA_BATCHBOOK
Batch-Book-Flag.
-
KONTOAUSZUG_IGNORE_FORMAT
public static final MetaKey KONTOAUSZUG_IGNORE_FORMAT
Soll das Abrufen der Kontoauszuege auch dann erlaubt werden, wenn PDF nicht unterstuetzt wird?
-
KONTOAUSZUG_MARK_READ
public static final MetaKey KONTOAUSZUG_MARK_READ
Sollen Kontoauszuege beim Abruf sofort als gelesen markiert werden?
-
KONTOAUSZUG_SEND_RECEIPT
public static final MetaKey KONTOAUSZUG_SEND_RECEIPT
Sollen die Empfangsquittungen automatisch gesendet werden?
-
KONTOAUSZUG_INTERVAL
public static final MetaKey KONTOAUSZUG_INTERVAL
Abruf-Intervall fuer die Kontoauszuege im PDF-Format.
-
KONTOAUSZUG_INTERVAL_LAST
public static final MetaKey KONTOAUSZUG_INTERVAL_LAST
Datum des letzten Abrufs der Kontoauszuege im PDF-Format.
-
KONTOAUSZUG_STORE_MESSAGING
public static final MetaKey KONTOAUSZUG_STORE_MESSAGING
True, wenn die Kontoauszuege per Messaging-Plugin gespeichert werden sollen.
-
KONTOAUSZUG_STORE_PATH
public static final MetaKey KONTOAUSZUG_STORE_PATH
Ordner, in dem die Kontoauszuege erstellt werden sollen.
-
KONTOAUSZUG_TEMPLATE_PATH
public static final MetaKey KONTOAUSZUG_TEMPLATE_PATH
Template fuer den Unter-Ordner.
-
KONTOAUSZUG_TEMPLATE_NAME
public static final MetaKey KONTOAUSZUG_TEMPLATE_NAME
Template fuer den Dateinamen.
-
UMSATZ_CAMT
public static final MetaKey UMSATZ_CAMT
Legt fest, ob CAMT fuer den Umsatz-Abruf verwendet werden soll.
-
TAN_CANCEL
public static final MetaKey TAN_CANCEL
TAN-Eingabe abgebrochen
-
-
Method Detail
-
values
public static MetaKey[] 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 (MetaKey c : MetaKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetaKey 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
-
getName
public java.lang.String getName()
Liefert den Namen des Meta-Keys.- Returns:
- der Name des Meta-Keys.
-
getDescription
public java.lang.String getDescription()
Liefert einen optionalen Beschreibungstext zu dem Meta-Key.- Returns:
- optionaler Beschreibungstext zu dem Meta-Key.
-
getDefault
public java.lang.String getDefault()
Liefert den Default-Wert.- Returns:
- der Default-Wert.
-
get
public java.lang.String get(HibiscusDBObject o) throws java.rmi.RemoteException
Liefert den Wert des Meta-Keys fuer das Objekt.- Parameters:
o
- das Objekt.- Returns:
- der Wert des Meta-Keys oder der Default-Wert, wenn kein Wert existiert.
- Throws:
java.rmi.RemoteException
-
set
public void set(HibiscusDBObject o, java.lang.String value) throws java.rmi.RemoteException
Speichert den Wert des Meta-Keys fuer das Objekt.- Parameters:
o
- das Objekt.value
- der Wert des Meta-Keys.- Throws:
java.rmi.RemoteException
-
get
public java.lang.String get(HibiscusDBObject o, java.lang.String suffix) throws java.rmi.RemoteException
Liefert den Wert des Meta-Keys fuer das Objekt.- Parameters:
o
- das Objekt.suffix
- optionaler Suffix, um verschiedene Varianten des Meta-Key verwenden zu koennen.- Returns:
- der Wert des Meta-Keys oder der Default-Wert, wenn kein Wert existiert.
- Throws:
java.rmi.RemoteException
-
set
public void set(HibiscusDBObject o, java.lang.String suffix, java.lang.String value) throws java.rmi.RemoteException
Speichert den Wert des Meta-Keys fuer das Objekt.- Parameters:
o
- das Objekt.suffix
- optionaler Suffix, um verschiedene Varianten des Meta-Key verwenden zu koennen.value
- der Wert des Meta-Keys.- Throws:
java.rmi.RemoteException
-
-