Skip to main content

Adding and Removing Settings

Adding and Removing Settings

To provide new settings for a production, a business host, or an adapter, modify its class definition as follows:

  1. Add a property for each configuration setting you wish to define.

  2. Add a class parameter called SETTINGS to the class.

  3. Set the value of SETTINGS to be a comma-delimited list of the names of the properties you have just defined. For example:

    Property foo As %String;
    
    
    
    

    See the following section for additional details for SETTINGS.

The foo and bar settings now automatically appear in the configuration display on the Production Configuration page whenever an item of that class is selected for configuration.

To remove an inherited configuration setting, list the property in the SETTINGS class parameter, preceded by a hyphen (-). For example:

Parameter SETTINGS = "-foo";
FeedbackOpens in a new tab