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.
package de.bund.bva.isyfact.konfiguration.config;
import java.util.ArrayList;
import java.util.List;
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;
}
}