Add ADF Library Components into App

From ADF Docs
Revision as of 05:57, 22 November 2009 by WikiSysop (talk | contribs) (Created page with '== Add ADF Library Components into an Application == Following are instructions for Adding an ADF Library Component into an ADF Application: # Open the ''AppBeanConfig.cfm'' fi…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Add ADF Library Components into an Application

Following are instructions for Adding an ADF Library Component into an ADF Application:

  1. Open the AppBeanConfig.cfm file in your applications directory. See the App Bean Config wiki page for more details.
  2. Identify what ADF Library components and version you want added to your application.
  3. Add the 'addConstructorDependency' command into the App Bean Config.
 addConstructorDependency(BeanName, InjectedBeanName, PropertyName);
  1. The parameters for the 'addConstructorDependency' command are as follows:
    1. BeanName:string:required - The name of the bean (Singleton or Transient) to add the Dependency to.
    2. InjectedBeanName:string:required - The name of the bean to inject.
    3. PropertyName:string:optional - The optional property name to pass the bean into. Defaults to the bean name if not provided.
  2. The following is an example of adding a dependency for the Scripts_1_0 ADF library component to your application.
  addConstructorDependency(appBeanName, "scripts_1_0", "scripts");
  1. Where scripts_1_0 is the ADF Library component and the property name will be scripts when referenced within the apps application scope (i.e. Application.MYAPP.scripts).

Related Guides