public class ExchangeAttributeParser extends Object
This uses a service loader mechanism to allow additional token types to be loaded. Token definitions are loaded from the provided class loader.
ExchangeAttributes.parser(ClassLoader)
Modifier and Type | Method and Description |
---|---|
ExchangeAttribute | parse(String valueString) Parses the provided value string, and turns it into a list of exchange attributes. |
ExchangeAttribute | parseSingleToken(String token) |
public ExchangeAttribute parse(String valueString)
Tokens are created according to the following rules:
%a - % followed by single character. %% is an escape for a literal % %{.*}a? - % plus curly braces with any amount of content inside, followed by an optional character ${.*} - $ followed by a curly braces to reference an item from the predicate context
valueString
- public ExchangeAttribute parseSingleToken(String token)
Copyright © 2020 JBoss by Red Hat. All rights reserved.