public static class PayloadExchangeMatcher.MatchResult
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,java.lang.Object> |
getVariables()
Gets potential variables and their values
|
boolean |
isMatch() |
static reactor.core.publisher.Mono<PayloadExchangeMatcher.MatchResult> |
match()
Creates an instance of
PayloadExchangeMatcher.MatchResult that is a match with no variables |
static reactor.core.publisher.Mono<PayloadExchangeMatcher.MatchResult> |
match(java.util.Map<java.lang.String,? extends java.lang.Object> variables)
Creates an instance of
PayloadExchangeMatcher.MatchResult that is a match with the specified variables |
static reactor.core.publisher.Mono<PayloadExchangeMatcher.MatchResult> |
notMatch()
Creates an instance of
PayloadExchangeMatcher.MatchResult that is not a match. |
public boolean isMatch()
public java.util.Map<java.lang.String,java.lang.Object> getVariables()
public static reactor.core.publisher.Mono<PayloadExchangeMatcher.MatchResult> match()
PayloadExchangeMatcher.MatchResult
that is a match with no variablespublic static reactor.core.publisher.Mono<PayloadExchangeMatcher.MatchResult> match(java.util.Map<java.lang.String,? extends java.lang.Object> variables)
PayloadExchangeMatcher.MatchResult
that is a match with the specified variablesvariables
- public static reactor.core.publisher.Mono<PayloadExchangeMatcher.MatchResult> notMatch()
PayloadExchangeMatcher.MatchResult
that is not a match.