Add New Library Component

From ADF Docs
Revision as of 05:36, 22 November 2009 by WikiSysop (talk | contribs) (Created page with '== Add New Library Component == The following describes the steps to add a new component to the ADF library: # Add a new directory in the 'ADF/lib' directory with the new compon…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Add New Library Component

The following describes the steps to add a new component to the ADF library:

  1. Add a new directory in the 'ADF/lib' directory with the new components name. (Note: Don't use spaces or any special character)
  2. Create the new CFC file with the new components name. (Again Note: Don't use spaces or any special character)
  3. Be sure to give the file name the version number. See ADF Library Component Versions wiki page for details on ADF versioning schema.
  4. Add the property fields to component. See ADF Lib wiki page for details on the property tags in the library components.
  5. Update the component methods as needed.
  6. Reset the ADF for the server and site. See the Reset ADF wiki page for more details.
  7. The new bean is now available in the object factory as the component file name.
  8. To make this new library component available to a site, you will make changes in the Site Configuration - ADF Library Components. Update the application scope variable to use the new ADF library bean.
  9. To make this new library component available to an application, you will make changes in the App Bean Config file. Update the ADF library components commands for addConstructorDependency to use the new ADF library bean.

Related Guides