Package org.jboss.soa.esb

Examples of org.jboss.soa.esb.Configurable


              final IOException ioe = new IOException("Failed to instantiate Retry Handler") ;
              ioe.initCause(th) ;
              throw ioe ;
          }
          if (isConfigurable) {
              final Configurable configurable = Configurable.class.cast(handler) ;
              try {
                  configurable.setConfiguration(config) ;
              } catch (final ConfigurationException ce) {
                  final IOException ioe = new IOException("Failed to configure Retry Handler") ;
                  ioe.initCause(ce) ;
                  throw ioe ;
              }
View Full Code Here


          throw new ConfigurationException("Unexpected exception querying contract provider", lre);
        }
       
        if ((provider != null) && (provider instanceof Configurable))
        {
          final Configurable configurable = Configurable.class.cast(provider) ;
          configurable.setConfiguration(config);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.Configurable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.