Difference between revisions of "ADF Core Site Bean Config"

From ADF Docs
Jump to: navigation, search
(Overview)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
The Core Site Bean Configuration file for the lightwire framework creates the objects and dependencies for the ADF.
+
The Core Site Bean Configuration file for the lightwire framework creates the objects and dependencies for the site.
  
== Architecture ==
 
 
The Bean Configuration file extends the [[Lightwire Config Extended Base|Lightwire Config Extended Base]] component file.   
 
The Bean Configuration file extends the [[Lightwire Config Extended Base|Lightwire Config Extended Base]] component file.   
  
 +
The configuration file sets up the objects for all components and ADF library overrides at the site.
 +
 +
== Architecture ==
 +
* Create the CoreConfig object into the factory.
 +
<code lang="java">
 +
/*
 +
* Load the singleton for the Core Config file
 +
*/
 +
addSingleton("ADF.core.Config", "CoreConfig");
 +
</code>
  
 
[[Category:Core]]
 
[[Category:Core]]

Revision as of 14:05, 24 March 2010

Overview

The Core Site Bean Configuration file for the lightwire framework creates the objects and dependencies for the site.

The Bean Configuration file extends the Lightwire Config Extended Base component file.

The configuration file sets up the objects for all components and ADF library overrides at the site.

Architecture

  • Create the CoreConfig object into the factory.

/*

*	Load the singleton for the Core Config file
*/

addSingleton("ADF.core.Config", "CoreConfig");