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