de.bund.bva.isyfact.konfiguration.config.IsyKonfigurationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isy-konfiguration Show documentation
Show all versions of isy-konfiguration Show documentation
Stellt eine Komponente für die Konfiguration von Anwendungen bereit.
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;
}
}