use of org.apache.camel.component.qute.QuteComponent in project camel-quarkus by apache.
the class CamelQuteRecorder method createQuteComponent.
public RuntimeValue<QuteComponent> createQuteComponent(BeanContainer beanContainer) {
Engine quteEngine = beanContainer.instance(Engine.class);
QuteComponent component = new QuteComponent();
component.setQuteEngine(quteEngine);
return new RuntimeValue<>(component);
}
Aggregations