Interface Substitutor


public interface Substitutor
Performs token substitutions on a string using a set of SubstitutionHandlers.
See Also:
  • Method Details

    • setSubstitutionHandlers

      void setSubstitutionHandlers(String subsHandlerNames)
      Set the list of SubstitutionHandlers to use for substitution.
      Parameters:
      subsHandlerNames - Comma-separated list of substitution handler class names.
    • setSubstitutionHandlers

      void setSubstitutionHandlers(List<SubstitutionHandler> subsHandlers)
      Set the list of SubstitutionHandlers to use for substitution.
      Parameters:
      subsHandlers - List of handler instances.
    • substitute

      String substitute(String original) throws SubstitutionException
      Recursively replaces all tokens in the string original with the results from matching handlers. Any tokens that are not recognized by any handlers will remain in the string.
      Parameters:
      original - String with tokens to be substituted.
      Returns:
      String with substitutions performed.
      Throws:
      SubstitutionException - if an error occurs during substitution
    • close

      void close()
      Cleanup substitutor state and release all handlers.