1 17 package org.apache.servicemix.jbi.config; 18 19 import org.springframework.beans.BeansException; 20 import org.springframework.beans.factory.support.DefaultListableBeanFactory; 21 import org.springframework.context.ApplicationContext; 22 import org.apache.xbean.spring.context.ClassPathXmlApplicationContext; 23 24 import java.io.IOException ; 25 import java.util.List ; 26 27 32 public class DebugClassPathXmlApplicationContext extends ClassPathXmlApplicationContext { 33 public DebugClassPathXmlApplicationContext(String id) throws BeansException { 34 super(id); 35 } 37 38 public DebugClassPathXmlApplicationContext(String id, List processors) throws BeansException { 39 super(id, processors); 40 } 42 43 public DebugClassPathXmlApplicationContext(String [] strings) throws BeansException { 44 super(strings); 45 } 46 47 public DebugClassPathXmlApplicationContext(String [] strings, boolean b) throws BeansException { 48 super(strings, b); 49 } 50 51 public DebugClassPathXmlApplicationContext(String [] strings, ApplicationContext applicationContext) throws BeansException { 52 super(strings, applicationContext); 53 } 54 55 public DebugClassPathXmlApplicationContext(String [] strings, boolean b, ApplicationContext applicationContext) throws BeansException { 56 super(strings, b, applicationContext); 57 } 58 59 protected void loadBeanDefinitions(DefaultListableBeanFactory beanFactory) throws IOException { 60 super.loadBeanDefinitions(beanFactory); 61 69 } 70 } 71 | Popular Tags |