use of org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean in project camel by apache.
the class SqsComponentAutoConfiguration method configureSqsComponent.
@Lazy
@Bean(name = "aws-sqs-component")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(SqsComponent.class)
public SqsComponent configureSqsComponent(CamelContext camelContext) throws Exception {
SqsComponent component = new SqsComponent();
component.setCamelContext(camelContext);
return component;
}
use of org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean in project camel by apache.
the class SWFComponentAutoConfiguration method configureSWFComponent.
@Lazy
@Bean(name = "aws-swf-component")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(SWFComponent.class)
public SWFComponent configureSWFComponent(CamelContext camelContext) throws Exception {
SWFComponent component = new SWFComponent();
component.setCamelContext(camelContext);
return component;
}
use of org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean 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;
}
use of org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean in project camel by apache.
the class QueueServiceComponentAutoConfiguration method configureQueueServiceComponent.
@Lazy
@Bean(name = "azure-queue-component")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(QueueServiceComponent.class)
public QueueServiceComponent configureQueueServiceComponent(CamelContext camelContext) throws Exception {
QueueServiceComponent component = new QueueServiceComponent();
component.setCamelContext(camelContext);
return component;
}
use of org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean in project camel by apache.
the class BarcodeDataFormatAutoConfiguration method configureBarcodeDataFormatFactory.
@Bean(name = "barcode-dataformat-factory")
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(BarcodeDataFormat.class)
public DataFormatFactory configureBarcodeDataFormatFactory(final CamelContext camelContext, final BarcodeDataFormatConfiguration configuration) {
return new DataFormatFactory() {
public DataFormat newInstance() {
BarcodeDataFormat dataformat = new BarcodeDataFormat();
if (CamelContextAware.class.isAssignableFrom(BarcodeDataFormat.class)) {
CamelContextAware contextAware = CamelContextAware.class.cast(dataformat);
if (contextAware != null) {
contextAware.setCamelContext(camelContext);
}
}
try {
Map<String, Object> parameters = new HashMap<>();
IntrospectionSupport.getProperties(configuration, parameters, null, false);
IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), dataformat, parameters);
} catch (Exception e) {
throw new RuntimeCamelException(e);
}
return dataformat;
}
};
}
Aggregations