Package org.apache.shiro.util
Class RegExPatternMatcher
- java.lang.Object
-
- org.apache.shiro.util.RegExPatternMatcher
-
- All Implemented Interfaces:
PatternMatcher
public class RegExPatternMatcher extends Object implements PatternMatcher
PatternMatcherimplementation that uses standardjava.util.regexobjects.- Since:
- 1.0
- See Also:
Pattern
-
-
Constructor Summary
Constructors Constructor Description RegExPatternMatcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmatches(String pattern, String source)Simple implementation that merely uses the default pattern comparison logic provided by the JDK.
-
-
-
Method Detail
-
matches
public boolean matches(String pattern, String source)
Simple implementation that merely uses the default pattern comparison logic provided by the JDK. This implementation essentially executes the following:Pattern p = Pattern.compile(pattern); Matcher m = p.matcher(source); return m.matches();
- Specified by:
matchesin interfacePatternMatcher- Parameters:
pattern- the pattern to match againstsource- the source to match- Returns:
trueif the source matches the required pattern,falseotherwise.
-
-