Reference > Rule Studio User Interface > Wizards > New Client Project for RuleApps Wizard > Ruleset Parameters Page

The Ruleset Parameters page prompts you to change the initial values of the ruleset parameters in all the ruleset archives selected on the previous page (Ruleset Archive).

Ruleset parameters comprise the following values:

The first three values identify the parameter. Initial Value is the only editable value on this page.

To edit a value, select the row that contains the ruleset parameter you want to edit, then click Change to open a new page where you can enter either a simple expression or a method for the parameter.

Here is an example of a ruleset parameter method:

Borrower borrower = new loan.Borrower("John", "Doe",
                      loan.DateUtil.makeDate(1968, java.util.Calendar.MAY, 12),
                   "123456789");
borrower.setZipCode("91320");
borrower.setCreditScore(600);
borrower.setYearlyIncome(100000);
return borrower;

This ruleset parameter is used in the sample How to Generate a Rule Service Bean.

Related Concepts

Ruleset Parameters
Ruleset Archive Components

Related Tasks

Creating Ruleset Parameters
Editing RuleApp Projects