All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kapott.hbci.GV.parsers.AbstractSepaParser Maven / Gradle / Ivy

Go to download

HBCI4j - Home Banking Computer Interface for Java - Clone from https://github.com/hbci4j/hbci4java

There is a newer version: 3.5.46
Show newest version
package org.kapott.hbci.GV.parsers;

import java.util.HashMap;

/**
 * Abstrakte Basis-Klasse der SEPA PAIN-Parser.
 *
 * @param  der konkrete Typ.
 */
public abstract class AbstractSepaParser implements ISEPAParser {
    /**
     * Speichert den Wert in den Properties.
     *
     * @param props die Properties.
     * @param name  das Property.
     * @param value der Wert.
     */
    void put(HashMap props, Names name, String value) {
        // BUGZILLA 1610 - "java.util.Properties" ist von Hashtable abgeleitet und unterstuetzt keine NULL-Werte
        if (value == null)
            return;

        props.put(name.getValue(), value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy