use of org.apache.camel.component.couchdb.CouchDbComponent in project camel by apache.
the class CouchDbComponentAutoConfiguration method configureCouchDbComponent.
@Lazy
@Bean(name = "couchdb-component")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(CouchDbComponent.class)
public CouchDbComponent configureCouchDbComponent(CamelContext camelContext) throws Exception {
CouchDbComponent component = new CouchDbComponent();
component.setCamelContext(camelContext);
return component;
}
Aggregations