use of io.atlasmap.java.core.TargetValueConverter in project atlasmap by atlasmap.
the class JavaModule method init.
@Override
public void init() {
// TODO support non-flat class loader
this.classLoader = Thread.currentThread().getContextClassLoader();
javaInspectionService = new ClassInspectionService();
javaInspectionService.setConversionService(getConversionService());
setJavaInspectionService(javaInspectionService);
javaConstructService = new JavaConstructService();
javaConstructService.setConversionService(getConversionService());
setJavaConstructService(javaConstructService);
targetValueConverter = new TargetValueConverter(classLoader, getConversionService());
}
Aggregations