Defines a variable within the properties file or an included properties file.
You can define a variable within the properties file or an included properties file if the variable is defined before it is used:
NUM_TO_SEND=1000 … A.comp.MaxRecords=${NUM_TO_SEND}
You can also define the variable using the "-D" option to the Java Virtual Machine when the adapter is started:
java –DNUM_TO_SEND=1000 org.openadapter.adapter.RunAdapter config.props A