Package org.forgerock.config.resolvers
Class SubstitutionVisitor
java.lang.Object
org.forgerock.config.resolvers.SubstitutionVisitor
- All Implemented Interfaces:
TemplateVisitor<String,SubstitutionContext>
public final class SubstitutionVisitor
extends Object
implements TemplateVisitor<String,SubstitutionContext>
This visitor evaluates
Templates with the help of a PropertyResolver.
It supports recursive evaluation if given a TemplateParser.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic SubstitutionVisitor.Buildersubstitution(PropertyResolver resolver) Create a builder forSubstitutionVisitor.visitEmpty(SubstitutionContext context) Visit an empty template with the givencontextobject.visitProperty(SubstitutionContext context, Template property, Template defaultValue) Visit a property template with the givencontextobject.visitSequence(SubstitutionContext context, List<Template> sequence) Visit a sequence of templates with the givencontextobject.visitText(SubstitutionContext context, String text) Visit a textual template with the givencontextobject.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.forgerock.config.resolvers.template.TemplateVisitor
visitAny
-
Method Details
-
substitution
Create a builder forSubstitutionVisitor.- Parameters:
resolver- property resolver used to evaluate properties- Returns:
- a new builder
-
visitText
Description copied from interface:TemplateVisitorVisit a textual template with the givencontextobject.- Specified by:
visitTextin interfaceTemplateVisitor<String,SubstitutionContext> - Parameters:
context- the contextual object (can benull)text- the text contained in the visited textual template- Returns:
- the result of the operation on the template
-
visitEmpty
Description copied from interface:TemplateVisitorVisit an empty template with the givencontextobject.- Specified by:
visitEmptyin interfaceTemplateVisitor<String,SubstitutionContext> - Parameters:
context- the contextual object (can benull)- Returns:
- the result of the operation on the template
-
visitProperty
Description copied from interface:TemplateVisitorVisit a property template with the givencontextobject.- Specified by:
visitPropertyin interfaceTemplateVisitor<String,SubstitutionContext> - Parameters:
context- the contextual object (can benull)property- the template that defines the property's namedefaultValue- the template that defines the property's default value- Returns:
- the result of the operation on the template
-
visitSequence
Description copied from interface:TemplateVisitorVisit a sequence of templates with the givencontextobject.- Specified by:
visitSequencein interfaceTemplateVisitor<String,SubstitutionContext> - Parameters:
context- the contextual object (can benull)sequence- the (nevernull) list of templates within this sequence- Returns:
- the result of the operation on the template
-