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

de.bund.bva.isyfact.konfiguration.config.IsyKonfigurationProperties Maven / Gradle / Ivy

The newest version!
package de.bund.bva.isyfact.konfiguration.config;

import java.util.ArrayList;
import java.util.List;

/**
 * The module isy-konfiguration is deprecated and will be removed in a future release.
 * Please use the built-in mechanism of the springframework instead.
 * 

* https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.external-config * * @deprecated since IsyFact 3.1.0 */ @Deprecated public class IsyKonfigurationProperties { private String namenschema; private List properties = new ArrayList<>(); public List getProperties() { return properties; } public String getNamenschema() { return namenschema; } public void setNamenschema(String namenschema) { this.namenschema = namenschema; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy