
com.greenbird.configuration.context.MuleXmlBeanDefinitionReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mule-configuration Show documentation
Show all versions of mule-configuration Show documentation
Extension that enables usage of the greenbird-configuration library in Mule ESB applications.
The newest version!
package com.greenbird.configuration.context;
import org.mule.config.spring.MuleBeanDefinitionDocumentReader;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
public class MuleXmlBeanDefinitionReader extends XmlBeanDefinitionReader {
public MuleXmlBeanDefinitionReader(BeanDefinitionRegistry registry) {
super(registry);
setDocumentReaderClass(MuleBeanDefinitionDocumentReader.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy