use of org.apache.camel.component.ahc.ws.WsComponent in project camel by apache.
the class WsComponentAutoConfiguration method configureWsComponent.
@Lazy
@Bean(name = { "ahc-ws-component", "ahc-wss-component" })
@ConditionalOnClass(CamelContext.class)
@ConditionalOnMissingBean(WsComponent.class)
public WsComponent configureWsComponent(CamelContext camelContext, WsComponentConfiguration configuration) throws Exception {
WsComponent component = new WsComponent();
component.setCamelContext(camelContext);
Map<String, Object> parameters = new HashMap<>();
IntrospectionSupport.getProperties(configuration, parameters, null, false);
for (Map.Entry<String, Object> entry : parameters.entrySet()) {
Object value = entry.getValue();
Class<?> paramClass = value.getClass();
if (paramClass.getName().endsWith("NestedConfiguration")) {
Class nestedClass = null;
try {
nestedClass = (Class) paramClass.getDeclaredField("CAMEL_NESTED_CLASS").get(null);
HashMap<String, Object> nestedParameters = new HashMap<>();
IntrospectionSupport.getProperties(value, nestedParameters, null, false);
Object nestedProperty = nestedClass.newInstance();
IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), nestedProperty, nestedParameters);
entry.setValue(nestedProperty);
} catch (NoSuchFieldException e) {
}
}
}
IntrospectionSupport.setProperties(camelContext, camelContext.getTypeConverter(), component, parameters);
return component;
}
Aggregations