private static String trustStore = null;
private static String trustStorePassword = null;
public ProxyGenerator() {
Configuration conf = new Configuration();
trustStore = conf.trustStore;
trustStorePassword = conf.trustStorePassword;
log.debug("loaded ProxyGenerator Config: " + "trustStore="+trustStore + " trustStorePassword=" + trustStorePassword);
}