Uses of Interface
org.apache.hivemind.Registry

Packages that use Registry
org.apache.hivemind.impl Implementations of interfaces defined in the org.apache.commons.hivemind package. 
org.apache.hivemind.servlet Classes to support use of HiveMind within servlet applications. 
org.apache.hivemind.test Base classes and utilities to support unit tests involving HiveMind. 
 

Uses of Registry in org.apache.hivemind.impl
 

Classes in org.apache.hivemind.impl that implement Registry
 class RegistryImpl
          Implementation of Registry.
 

Methods in org.apache.hivemind.impl that return Registry
 Registry RegistryBuilder.constructRegistry(java.util.Locale locale)
          Invoked after all modules have been added with RegistryBuilder.processModule(ClassResolver, Resource).
static Registry RegistryBuilder.constructDefaultRegistry()
          Constructs a default registry based on just the modules visible to the thread context class loader (this is sufficient is the majority of cases), and using the default locale.
 

Constructors in org.apache.hivemind.impl with parameters of type Registry
TranslatorManager(Registry registry, ErrorHandler errorHandler)
           
 

Uses of Registry in org.apache.hivemind.servlet
 

Methods in org.apache.hivemind.servlet that return Registry
protected  Registry HiveMindFilter.constructRegistry(javax.servlet.FilterConfig config)
          Invoked from HiveMindFilter.init(FilterConfig) to actually construct the Registry.
static Registry HiveMindFilter.getRegistry(javax.servlet.http.HttpServletRequest request)
          Returns the Registry that was stored as a request attribute inside method HiveMindFilter.doFilter(ServletRequest, ServletResponse, FilterChain).
 

Uses of Registry in org.apache.hivemind.test
 

Methods in org.apache.hivemind.test that return Registry
protected  Registry HiveMindTestCase.buildFrameworkRegistry(java.lang.String file)
          Convienience method for invoking HiveMindTestCase.buildFrameworkRegistry(String[]) with only a single file.
protected  Registry HiveMindTestCase.buildFrameworkRegistry(java.lang.String[] files)
          Builds a minimal registry, containing only the specified files, plus the master module descriptor (i.e., those visible on the classpath).
protected  Registry HiveMindTestCase.buildMinimalRegistry(Resource l)
          Builds a registry from exactly the provided resource; this registry will not include the hivemind module.