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

net.relaysoft.commons.data.conf.DataManagerProperties Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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