com.github.ncredinburgh.tomcat.KeyLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secure-tomcat-datasourcefactory Show documentation
Show all versions of secure-tomcat-datasourcefactory Show documentation
A Tomcat DataSourceFactory that supports an encrypted password
The newest version!
package com.github.ncredinburgh.tomcat;
import java.util.Properties;
public interface KeyLocator {
public void configure(Properties properties) throws DecryptionException;
public byte[] locateKey() throws DecryptionException;
}