use of org.kie.dmn.api.core.DMNCompilerConfiguration in project drools by kiegroup.
the class DMNAssemblerService method getCompiler.
private DMNCompiler getCompiler(KnowledgeBuilderImpl kbuilderImpl) {
List<DMNProfile> dmnProfiles = kbuilderImpl.getCachedOrCreate(DMN_PROFILES_CACHE_KEY, () -> getDMNProfiles(kbuilderImpl));
DMNCompilerConfiguration compilerConfig = compilerConfigWithKModulePrefs(kbuilderImpl.getBuilderConfiguration().getChainedProperties(), dmnProfiles);
return DMNFactory.newCompiler(compilerConfig);
}
Aggregations