com.acsinet_solutions.cetia4.controller
Interface ConfigurableModule

All Known Implementing Classes:
SinglePageCatalogModule, Topics13Servlet

public interface ConfigurableModule

IOC interface that may be implemented by a module that may want to perform manual configuration as opposed to annotation based configuration. Annotation based configuration is the recommended method for doing the setup of a class, but this may be handy when the data that otherwise may be set in the annotation is provided at runtime or when custom configuration is needed and it is desired to maintain all code in a single class without the use of external helpers.

Author:
Santiago Arriaga

Method Summary
 void setup(ModuleConfiguration configuration)
          Perform initialization of the module using the provided not null module configuration.
 

Method Detail

setup

void setup(ModuleConfiguration configuration)
Perform initialization of the module using the provided not null module configuration. Implementations will decide which custom configuration the want to implement here.