Accessing initialization parameters

From your Atom feed implementation class, you can access the values of initialization parameters that are defined in the Atom plug-in framework configuration file.

Initialization parameters are stored in the FeedConfig object that is passed to the init method.

For details of defining initialization parameters in the plug-in framework configuration file, refer to the feed topic.

Example

The following example obtains the value of an initialization parameter called "debug":
public void init(FeedConfig feedConfig) {
    
    String debug_flag = feedConfig.getInitParameter("debug");

}