Java org.springframework.security.web.util.matcher AntPathRequestMatcher fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.web.util.matcher AntPathRequestMatcher fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.web.util.matcher AntPathRequestMatcher.

The text is from its open source code.

Constructor

AntPathRequestMatcher(String pattern)
Creates a matcher with the specific pattern which will match all HTTP methods in a case insensitive manner.
AntPathRequestMatcher(String pattern, String httpMethod)
Creates a matcher with the supplied pattern and HTTP method in a case insensitive manner.
AntPathRequestMatcher(String pattern, String httpMethod, boolean caseSensitive)
Creates a matcher with the supplied pattern which will match the specified Http method

Method

booleanmatches(HttpServletRequest request)
Returns true if the configured pattern (and HTTP-Method) match those of the supplied request.