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.Autowired;
import org.springframework.stereotype.Component;

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

/**
 * Helfer-Klasse um den Zugriff auf die Konfiguration zu kapseln.
 *
 * @deprecated This module is deprecated and will be removed in a future release.
 * It is recommended to use isy-angular-widgets instead.
 */
@Deprecated
@Component
public class IsyWebKonfigurationHelper {
    /**
     * Die Konfiguration.
     */
    private Konfiguration konfiguration;

    @Autowired
    public IsyWebKonfigurationHelper(Konfiguration konfiguration) {
        this.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);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy