Class OrMessageMatcher<T>
java.lang.Object
org.springframework.security.messaging.util.matcher.AbstractMessageMatcherComposite<T>
org.springframework.security.messaging.util.matcher.OrMessageMatcher<T>
- All Implemented Interfaces:
 MessageMatcher<T>
MessageMatcher that will return true if any of the passed in
 MessageMatcher instances match.- Since:
 - 4.0
 
- 
Field Summary
Fields inherited from class org.springframework.security.messaging.util.matcher.AbstractMessageMatcherComposite
logger, LOGGERFields inherited from interface org.springframework.security.messaging.util.matcher.MessageMatcher
ANY_MESSAGE - 
Constructor Summary
ConstructorsConstructorDescriptionOrMessageMatcher(List<MessageMatcher<T>> messageMatchers) Creates a new instanceOrMessageMatcher(MessageMatcher<T>... messageMatchers) Creates a new instance - 
Method Summary
Methods inherited from class org.springframework.security.messaging.util.matcher.AbstractMessageMatcherComposite
getMessageMatchers, toString 
- 
Constructor Details
- 
OrMessageMatcher
Creates a new instance- Parameters:
 messageMatchers- theMessageMatcherinstances to try
 - 
OrMessageMatcher
Creates a new instance- Parameters:
 messageMatchers- theMessageMatcherinstances to try
 
 - 
 - 
Method Details
- 
matches
Description copied from interface:MessageMatcherReturns true if theMessagematches, else false- Parameters:
 message- theMessageto match on- Returns:
 - true if the 
Messagematches, else false 
 
 -