org.apache.tapestry5.ioc
Class RegistryBuilder

java.lang.Object
  extended by org.apache.tapestry5.ioc.RegistryBuilder

public final class RegistryBuilder
extends Object

Used to construct the IoC Registry. This class is not thread-safe. The Registry, once created, is thread-safe.


Constructor Summary
RegistryBuilder()
           
RegistryBuilder(ClassLoader classLoader)
           
RegistryBuilder(ClassLoader classLoader, LoggerSource loggerSource)
           
 
Method Summary
 RegistryBuilder add(Class... moduleClasses)
          Adds a number of modules (as module classes) to the registry, returning the builder for further configuration.
 RegistryBuilder add(ModuleDef moduleDef)
          Adds a ModuleDef to the registry, returning the builder for further configuration.
 RegistryBuilder add(String classname)
          Adds a modle class (specified by fully qualified class name) to the registry, returning the builder for further configuration.
 Registry build()
          Constructs and returns the registry; this may only be done once.
static Registry buildAndStartupRegistry(Class... moduleClasses)
          Constructs the registry, adds a number of modules (as module classes) to the registry and performs registry startup.
static Registry buildAndStartupRegistry(ModuleDef moduleDef, Class... moduleClasses)
          Constructs the registry, adds a ModuleDef and a number of modules (as module classes) to the registry and performs registry startup.
 ClassLoader getClassLoader()
           
 org.slf4j.Logger getLogger()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RegistryBuilder

public RegistryBuilder()

RegistryBuilder

public RegistryBuilder(ClassLoader classLoader)

RegistryBuilder

public RegistryBuilder(ClassLoader classLoader,
                       LoggerSource loggerSource)
Method Detail

add

public RegistryBuilder add(ModuleDef moduleDef)
Adds a ModuleDef to the registry, returning the builder for further configuration.


add

public RegistryBuilder add(Class... moduleClasses)
Adds a number of modules (as module classes) to the registry, returning the builder for further configuration.

See Also:
SubModule

add

public RegistryBuilder add(String classname)
Adds a modle class (specified by fully qualified class name) to the registry, returning the builder for further configuration.

See Also:
SubModule

build

public Registry build()
Constructs and returns the registry; this may only be done once. The caller is responsible for invoking Registry.performRegistryStartup().


getClassLoader

public ClassLoader getClassLoader()

getLogger

public org.slf4j.Logger getLogger()

buildAndStartupRegistry

public static Registry buildAndStartupRegistry(ModuleDef moduleDef,
                                               Class... moduleClasses)
Constructs the registry, adds a ModuleDef and a number of modules (as module classes) to the registry and performs registry startup. The returned registry is ready to use. The caller is must not invoke Registry.performRegistryStartup().

Parameters:
moduleDef - ModuleDef to add
moduleClasses - modules (as module classes) to add
Returns:
Registry
Since:
5.2.0

buildAndStartupRegistry

public static Registry buildAndStartupRegistry(Class... moduleClasses)
Constructs the registry, adds a number of modules (as module classes) to the registry and performs registry startup. The returned registry is ready to use. The caller is must not invoke Registry.performRegistryStartup().

Parameters:
moduleClasses - modules (as module classes) to add
Returns:
Registry
Since:
5.2.0


Copyright © 2003-2012 The Apache Software Foundation.