Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can use these special vars: $space$ and $newline$ to represent a space or newline.

Refer to other properties in that config file

In both of these cases the value for the property "somethingWhatever1" is: prefix something to be reused suffix 

Pre 2.3.0 patched, you can do this:

Code Block
somethingWhatever = something to be reused
somethingWhatever1.elConfig = prefix ${edu.internet2.middleware.grouperClient.util.GrouperClientConfig.retrieveConfig().propertyValueString("somethingWhatever")} suffix

Post 2.3.0 you can do this:

Code Block
somethingWhatever = something to be reused
somethingWhatever1 = prefix $$somethingWhatever$$ suffix

New Configuration File: subject.properties

...