Example usage for org.springframework.security.messaging.util.matcher MessageMatcher ANY_MESSAGE

List of usage examples for org.springframework.security.messaging.util.matcher MessageMatcher ANY_MESSAGE

Introduction

In this page you can find the example usage for org.springframework.security.messaging.util.matcher MessageMatcher ANY_MESSAGE.

Prototype

MessageMatcher ANY_MESSAGE

To view the source code for org.springframework.security.messaging.util.matcher MessageMatcher ANY_MESSAGE.

Click Source Link

Document

Matches every Message

Usage

From source file:ch.rasc.wampspring.security.WampMessageSecurityMetadataSourceRegistry.java

/**
 * Maps any {@link Message} to a security expression.
 *
 * @return the Expression to associate
 */
public Constraint anyMessage() {
    return matchers(MessageMatcher.ANY_MESSAGE);
}