Class ExcludeUrlRequestMatcher
- java.lang.Object
-
- de.hybris.platform.yacceleratorstorefront.security.ExcludeUrlRequestMatcher
-
- All Implemented Interfaces:
org.springframework.security.web.util.matcher.RequestMatcher
public class ExcludeUrlRequestMatcher extends java.lang.Object implements org.springframework.security.web.util.matcher.RequestMatcherCustom request matcher that returns false for urls that match the urls found in the excludeUrlSet. All other urls will return true.
-
-
Constructor Summary
Constructors Constructor Description ExcludeUrlRequestMatcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.util.Set<java.lang.String>getExcludeUrlSet()protected org.springframework.util.PathMatchergetPathMatcher()booleanmatches(javax.servlet.http.HttpServletRequest request)voidsetExcludeUrlSet(java.util.Set<java.lang.String> excludeUrlSet)voidsetPathMatcher(org.springframework.util.PathMatcher pathMatcher)
-
-
-
Method Detail
-
matches
public boolean matches(javax.servlet.http.HttpServletRequest request)
- Specified by:
matchesin interfaceorg.springframework.security.web.util.matcher.RequestMatcher
-
getExcludeUrlSet
protected java.util.Set<java.lang.String> getExcludeUrlSet()
-
setExcludeUrlSet
public void setExcludeUrlSet(java.util.Set<java.lang.String> excludeUrlSet)
-
getPathMatcher
protected org.springframework.util.PathMatcher getPathMatcher()
-
setPathMatcher
public void setPathMatcher(org.springframework.util.PathMatcher pathMatcher)
-
-