Uses of Interface
org.mule.api.config.ConfigurationBuilder

Packages that use ConfigurationBuilder
org.mule The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.api.context Mule Context APIs, including the MuleContext, agent and server event interfaces 
org.mule.config Providers Mule Xml configuration support and general configuration classes. 
org.mule.config.builders   
org.mule.config.i18n Internationalisation support for Mule messages and exception messages. 
org.mule.config.spring Support claases for Load Mule from Spring. 
org.mule.context   
org.mule.example.loanbroker   
org.mule.module.client Simple interface for Mule clients to send and receive events from local or remote Mule Servers. 
org.mule.module.guice   
org.mule.module.ibeans.config   
org.mule.module.launcher.application   
org.mule.module.scripting.builders   
org.mule.tck   
org.mule.tck.junit4   
 

Uses of ConfigurationBuilder in org.mule
 

Methods in org.mule that return ConfigurationBuilder
protected  ConfigurationBuilder MuleServer.createConfigurationBuilder()
           
 

Method parameters in org.mule with type arguments of type ConfigurationBuilder
protected  void MuleServer.addAnnotationsConfigBuilder(List<ConfigurationBuilder> builders)
          If the annotations module is on the classpath, add the annotations config builder to the list.
protected  void MuleServer.addStartupPropertiesConfigBuilder(List<ConfigurationBuilder> builders)
           
 

Uses of ConfigurationBuilder in org.mule.api.context
 

Methods in org.mule.api.context with parameters of type ConfigurationBuilder
 MuleContext MuleContextFactory.createMuleContext(ConfigurationBuilder configurationBuilder)
          Creates a new MuleContext using the given configurationBuilder
 MuleContext MuleContextFactory.createMuleContext(ConfigurationBuilder configurationBuilder, MuleContextBuilder muleContextBuilder)
          Creates a new MuleContext using the MuleContextBuilder provided and configures it with the list of configuration builder and c onfigures it with configurationBuilder
 

Method parameters in org.mule.api.context with type arguments of type ConfigurationBuilder
 MuleContext MuleContextFactory.createMuleContext(List<ConfigurationBuilder> configurationBuilders, MuleContextBuilder muleContextBuilder)
          Creates a new MuleContext using the MuleContextBuilder provided and configures it with the list of configuration builders.
 

Uses of ConfigurationBuilder in org.mule.config
 

Classes in org.mule.config that implement ConfigurationBuilder
 class AnnotationsConfigurationBuilder
          Enables Mule annotation processing so that annotated objects registered with the Mule registry will automatically be configured.
 

Uses of ConfigurationBuilder in org.mule.config.builders
 

Classes in org.mule.config.builders that implement ConfigurationBuilder
 class AbstractConfigurationBuilder
          A support class for ConfigurationBuilder implementations that handles the logic of creating config arrays and Properties arguments
 class AbstractResourceConfigurationBuilder
          Abstract ConfigurationBuilder implementation used for ConfigurationBuider's that use one of more configuration resources of the same type that are defined using strings or ConfigResource objects.
 class AutoConfigurationBuilder
          Configures Mule from a configuration resource or comma seperated list of configuration resources by auto-detecting the ConfigurationBuilder to use for each resource.
 class DefaultsConfigurationBuilder
          Configures defaults required by Mule.
 class SimpleConfigurationBuilder
          This simple ConfgurationBuilder implementation.
 class WebappMuleXmlConfigurationBuilder
          WebappMuleXmlConfigurationBuilder will first try and load config resources using the ServletContext and if this fails then it will attempt to load config resource from the classpath.
 

Uses of ConfigurationBuilder in org.mule.config.i18n
 

Methods in org.mule.config.i18n with parameters of type ConfigurationBuilder
static Message CoreMessages.configurationBuilderError(ConfigurationBuilder configurationBuilder)
           
static Message CoreMessages.configurationBuilderSuccess(ConfigurationBuilder configurationBuilder, int numResources)
           
static Message CoreMessages.configurationBuilderSuccess(ConfigurationBuilder configurationBuilder, String resources)
           
 

Uses of ConfigurationBuilder in org.mule.config.spring
 

Classes in org.mule.config.spring that implement ConfigurationBuilder
 class SpringConfigurationBuilder
          Adds an existing Spring ApplicationContext to Mule's internal collection of Registries.
 class SpringXmlConfigurationBuilder
          SpringXmlConfigurationBuilder enables Mule to be configured from a Spring XML Configuration file used with Mule name-spaces.
 

Uses of ConfigurationBuilder in org.mule.context
 

Methods in org.mule.context with parameters of type ConfigurationBuilder
 MuleContext DefaultMuleContextFactory.createMuleContext(ConfigurationBuilder configurationBuilder)
          Use default MuleContextBuilder
 MuleContext DefaultMuleContextFactory.createMuleContext(ConfigurationBuilder configurationBuilder, MuleContextBuilder muleContextBuilder)
          Creates a new MuleContext using the MuleContextBuilder provided and configures it with the list of configuration builder and c onfigures it with configurationBuilder
 MuleContext DefaultMuleContextFactory.createMuleContext(ConfigurationBuilder configurationBuilder, Properties properties)
          Creates a new MuleContext using the given configurationBuilder.
 MuleContext DefaultMuleContextFactory.createMuleContext(ConfigurationBuilder configurationBuilder, Properties properties, MuleConfiguration configuration)
          Creates a new MuleContext using the given configurationBuilder and configuration.
 

Method parameters in org.mule.context with type arguments of type ConfigurationBuilder
 MuleContext DefaultMuleContextFactory.createMuleContext(List<ConfigurationBuilder> configurationBuilders, MuleContextBuilder muleContextBuilder)
          Creates a new MuleContext using the MuleContextBuilder provided and configures it with the list of configuration builders.
 

Uses of ConfigurationBuilder in org.mule.example.loanbroker
 

Methods in org.mule.example.loanbroker that return ConfigurationBuilder
protected  ConfigurationBuilder AbstractLoanBrokerApp.getConfigBuilder()
           
 

Uses of ConfigurationBuilder in org.mule.module.client
 

Constructors in org.mule.module.client with parameters of type ConfigurationBuilder
MuleClient(String configResources, ConfigurationBuilder builder)
          Configures a Mule client instance
MuleClient(String configResources, ConfigurationBuilder builder, String user, String password)
          Configures a Mule client instance
 

Uses of ConfigurationBuilder in org.mule.module.guice
 

Classes in org.mule.module.guice that implement ConfigurationBuilder
 class GuiceConfigurationBuilder
          Provides the configuration entry point for loading Guice modules into Mule.
 

Uses of ConfigurationBuilder in org.mule.module.ibeans.config
 

Classes in org.mule.module.ibeans.config that implement ConfigurationBuilder
 class AbstractAnnotationConfigurationBuilder
          Provides implementation support for configuration builders that configure Mule by scanning annotations on the classpath.
 class IBeanHolderConfigurationBuilder
          A configuration builder that registers iBean objects on the classpath with the Mule registry.
 

Uses of ConfigurationBuilder in org.mule.module.launcher.application
 

Methods in org.mule.module.launcher.application that return ConfigurationBuilder
protected  ConfigurationBuilder DefaultMuleApplication.createConfigurationBuilder()
           
protected  ConfigurationBuilder DefaultMuleApplication.createConfigurationBuilderFromApplicationProperties()
           
 

Method parameters in org.mule.module.launcher.application with type arguments of type ConfigurationBuilder
protected  void DefaultMuleApplication.addAnnotationsConfigBuilderIfPresent(List<ConfigurationBuilder> builders)
           
protected  void DefaultMuleApplication.addIBeansConfigurationBuilderIfPackagesConfiguredForScanning(List<ConfigurationBuilder> builders)
           
 

Uses of ConfigurationBuilder in org.mule.module.scripting.builders
 

Classes in org.mule.module.scripting.builders that implement ConfigurationBuilder
 class ScriptConfigurationBuilder
          Configures Mule from one or more script files.
 

Uses of ConfigurationBuilder in org.mule.tck
 

Methods in org.mule.tck that return ConfigurationBuilder
protected  ConfigurationBuilder FunctionalTestCase.getBuilder()
          Deprecated.  
 

Uses of ConfigurationBuilder in org.mule.tck.junit4
 

Methods in org.mule.tck.junit4 that return ConfigurationBuilder
protected  ConfigurationBuilder FunctionalTestCase.getBuilder()
           
 



Copyright © 2003-2012 MuleSoft, Inc.. All Rights Reserved.