use of com.adaptris.core.management.BootstrapProperties in project interlok by adaptris.
the class DefaultPreProcessorLoader method resolve.
private ConfigPreProcessor resolve(String name, BootstrapProperties bootstrapProperties) throws CoreException {
ConfigPreProcessor result = null;
Properties p = getPropertyLoader().loadPropertyFile(name);
String classname = p.getProperty(CLASS_PROPERTY_KEY, name);
return this.createInstance(classname, bootstrapProperties);
}
Aggregations