public class SubstitutionService extends Object
Expected token format: &{key[|default]}.
The substitution algorithm works with a stack:
It supports recursion: resolved values are also substituted before being appended to the result.
Escaping is also supported.
Constructor and Description |
---|
SubstitutionService(PropertyResolver resolver)
Creates a new substitution service that will resolve variables using the given
resolver . |
Modifier and Type | Method and Description |
---|---|
String |
substitute(String source)
Perform variable substitution on the
source String. |
String |
substitute(String source,
boolean escape)
Perform variable substitution on the
source String. |
String |
substitute(String source,
SubstitutionContext context)
Perform variable substitution on the
source String. |
public SubstitutionService(PropertyResolver resolver)
resolver
.resolver
- resolver to usepublic String substitute(String source) throws SubstitutionException
source
String.
Any unresolved variable is returned unmodified.
Escape the source value.
source
- value potentially containing tokensSubstitutionException
- when substitution is interrupted because of an error (unresolved var or cycle)public String substitute(String source, boolean escape) throws SubstitutionException
source
String.
Any unresolved variable is returned unmodified.
Escape the source value if escape
is set to true
.
source
- value potentially containing tokensescape
- Enable/disable escaping modeSubstitutionException
- when substitution is interrupted because of an error (unresolved var or cycle)public String substitute(String source, SubstitutionContext context) throws SubstitutionException
source
String.
Any unresolved variable is returned unmodified.
When escaping mode is enabled (SubstitutionContext.escaping
set to true),
the substitution service will honor '\' (backslash) characters, treating them as a protection
for the next character. In other words, with escape mode enabled, it's possible to prevent
"&{key}" to be substituted by protecting the '&' with a '\',
resulting in "\&{key}" to be returned unmodified.
When escaping mode is disabled (SubstitutionContext.escaping
set to false),
then all '\' characters found in the source
string are kept as-is, and no protection
of '&' char is possible, meaning that even "\&{key}" will be substituted
to "\<value>".
Escaping examples:
source
- value potentially containing tokenscontext
- Hold substitution configuration values (escaping, notifications, ...)SubstitutionException
- when substitution is interrupted because of an error (unresolved var or cycle)Copyright © 2010-2018, ForgeRock All Rights Reserved.