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

prompto.config.ISecretKeyConfiguration Maven / Gradle / Ivy

The newest version!
package prompto.config;

import com.esotericsoftware.yamlbeans.YamlException;
import com.esotericsoftware.yamlbeans.document.YamlMapping;


public interface ISecretKeyConfiguration {

	String getFactory();
	char[] getSecret();
	default YamlMapping toYaml() throws YamlException {
		throw new RuntimeException();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy