net.relaysoft.commons.data.conf.DataManagerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-manager-spring-boot-starter Show documentation
Show all versions of data-manager-spring-boot-starter Show documentation
Spring Boot starter library for Relaysoft Data Manager
package net.relaysoft.commons.data.conf;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "relaysoft.data.manager")
public class DataManagerProperties {
public static class Cache {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
public static class Security {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
private String name;
private String instanceId;
private Cache cache;
private Security security;
public Cache getCache() {
return cache;
}
public String getInstanceId() {
return instanceId;
}
public String getName() {
return name;
}
public Security getSecurity() {
return security;
}
public void setCache(Cache cache) {
this.cache = cache;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public void setName(String name) {
this.name = name;
}
public void setSecurity(Security security) {
this.security = security;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy