Skip to content
RootCertificateConfig.java 694 B
Newer Older
package dk.gov.oiosi.security;

public class RootCertificateConfig {

	private String KeyStoreLocation = null;
	private String KeyStorePassword = null;
	private String KeyLabel = null;
	
	public String getKeyStoreLocation() {
		return KeyStoreLocation;
	}
	public void setKeyStoreLocation(String keyStoreLocation) {
		KeyStoreLocation = keyStoreLocation;
	}
	public String getKeyStorePassword() {
		return KeyStorePassword;
	}
	public void setKeyStorePassword(String keyStorePassword) {
		KeyStorePassword = keyStorePassword;
	}
	public String getKeyLabel() {
		return KeyLabel;
	}
	public void setKeyLabel(String keyLabel) {
		KeyLabel = keyLabel;
	}
		
	
	
	
}