Performs sys-prop and js evals on the passed value @param text The value to process @return the processed value
(CharSequence text)
| 444 | * @return the processed value |
| 445 | */ |
| 446 | public static String processConfigValue(CharSequence text) { |
| 447 | final String pv = evaluate(tokenReplaceSysProps(text)); |
| 448 | return (pv==null || pv.trim().isEmpty()) ? null : pv; |
| 449 | } |
| 450 | |
| 451 | /** |
| 452 | * Replaces all matched tokens with the matching system property value or a configured default |