org.citrusframework.config.xml.ChannelEndpointAdapterParser Maven / Gradle / Ivy
/*
* Copyright the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.citrusframework.config.xml;
import org.citrusframework.channel.ChannelEndpointAdapter;
import org.citrusframework.channel.ChannelSyncEndpointConfiguration;
import org.citrusframework.config.util.BeanDefinitionParserUtils;
import org.citrusframework.context.TestContextFactoryBean;
import org.citrusframework.endpoint.EndpointAdapter;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.BeanNameAware;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.support.AbstractBeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.xml.AbstractBeanDefinitionParser;
import org.springframework.beans.factory.xml.ParserContext;
import org.w3c.dom.Element;
/**
* Parses endpoint adapter bean definition for channel endpoint adapter.
* @since 1.4
*/
public class ChannelEndpointAdapterParser extends AbstractBeanDefinitionParser {
@Override
public AbstractBeanDefinition parseInternal(Element element, ParserContext parserContext) {
BeanDefinitionBuilder builder = BeanDefinitionBuilder.genericBeanDefinition(ChannelEndpointAdapterFactory.class);
BeanDefinitionBuilder endpointConfiguration = BeanDefinitionBuilder.genericBeanDefinition(ChannelSyncEndpointConfiguration.class);
new ChannelSyncEndpointParser().parseEndpointConfiguration(endpointConfiguration, element, parserContext);
String endpointConfigurationId = element.getAttribute(ID_ATTRIBUTE) + "EndpointAdapterConfiguration";
BeanDefinitionParserUtils.registerBean(endpointConfigurationId, endpointConfiguration.getBeanDefinition(), parserContext, shouldFireEvents());
builder.addPropertyReference("endpointConfiguration", endpointConfigurationId);
BeanDefinitionParserUtils.setPropertyReference(builder, element.getAttribute("fallback-adapter"), "fallbackEndpointAdapter");
return builder.getBeanDefinition();
}
/**
* Factory bean for endpoint adapter.
*/
private static class ChannelEndpointAdapterFactory implements FactoryBean, BeanFactoryAware, BeanNameAware {
@Autowired(required = false)
private TestContextFactoryBean testContextFactory;
private String name;
private ChannelSyncEndpointConfiguration endpointConfiguration;
private EndpointAdapter fallbackEndpointAdapter;
private BeanFactory beanFactory;
/**
* Specifies the endpointConfiguration.
* @param endpointConfiguration
*/
public void setEndpointConfiguration(ChannelSyncEndpointConfiguration endpointConfiguration) {
this.endpointConfiguration = endpointConfiguration;
}
/**
* Specifies the fallbackEndpointAdapter.
* @param fallbackEndpointAdapter
*/
public void setFallbackEndpointAdapter(EndpointAdapter fallbackEndpointAdapter) {
this.fallbackEndpointAdapter = fallbackEndpointAdapter;
}
@Override
public ChannelEndpointAdapter getObject() throws Exception {
ChannelEndpointAdapter endpointAdapter = new ChannelEndpointAdapter(endpointConfiguration);
endpointAdapter.setTestContextFactory(testContextFactory);
endpointAdapter.setName(name);
if (fallbackEndpointAdapter != null) {
endpointAdapter.setFallbackEndpointAdapter(fallbackEndpointAdapter);
}
if (beanFactory != null) {
endpointAdapter.setBeanFactory(beanFactory);
}
return endpointAdapter;
}
@Override
public Class> getObjectType() {
return ChannelEndpointAdapter.class;
}
@Override
public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
this.beanFactory = beanFactory;
}
@Override
public void setBeanName(String name) {
this.name = name;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy