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

de.bund.bva.isyfact.common.web.global.IsyWebKonfigurationHelper Maven / Gradle / Ivy

Go to download

Die IsyFact-Standards bilden das architektonische, technologische und methodische Fundament der IsyFact. Sie umfassen allgemeingültige und wiederverwendbare Konzepte und Komponenten, die für die Entwicklung beliebiger Fachanwendungen relevant sind.

There is a newer version: 6.2.0
Show newest version
package de.bund.bva.isyfact.common.web.global;

import org.springframework.beans.factory.annotation.Required;

import de.bund.bva.isyfact.common.web.konstanten.KonfigurationSchluessel;
import de.bund.bva.pliscommon.konfiguration.common.Konfiguration;

/**
 * Helfer-Klasse um den Zugriff auf die Konfiguration zu kapseln.
 */
public class IsyWebKonfigurationHelper {
    /**
     * Die Konfiguration.
     */
    private Konfiguration konfiguration;

    /**
     * Liefert den konfigurierten Grenzwert zum ergänzen von zweistelligen Jahreszahlen bei Datumsangaben. Ist
     * der Wert überhaupt nicht gesetzt, wird -1 zurückgegeben.
     * @return Der konfigurierte Wert oder -1 wenn dieser nicht gesetzt ist.
     */
    public int getGuiDatumsangabeJahreszahlenErgaenzenGrenze() {
        return this.konfiguration
            .getAsInteger(KonfigurationSchluessel.GUI_DATUMSANGABE_JAHRESZAHLEN_ERGAENZEN_GRENZE, -1);
    }

    @Required
    public void setKonfiguration(Konfiguration konfiguration) {
        this.konfiguration = konfiguration;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy