List of usage examples for org.springframework.security.messaging.util.matcher MessageMatcher interface-usage
From source file org.springframework.security.messaging.util.matcher.AbstractMessageMatcherComposite.java
/** * Abstract {@link MessageMatcher} containing multiple {@link MessageMatcher} * * @since 4.0 */ abstract class AbstractMessageMatcherComposite<T> implements MessageMatcher<T> {
From source file ch.rasc.wampspring.security.WampMessageTypeMatcher.java
/**
* A {@link MessageMatcher} that matches if the provided {@link Message} has a type that
* is the same as the {@link WampMessageType} that was specified in the constructor.
*
* @author Rob Winch
* @author Ralph Schaer
From source file ch.rasc.wampspring.security.WampDestinationMessageMatcher.java
/**
* <p>
* MessageMatcher which compares a pre-defined pattern against the destination of a
* {@link Message}. There is also support for optionally matching on a specified
* {@link WampMessageType}.
* </p>