Example usage for org.apache.shiro.util RegExPatternMatcher RegExPatternMatcher

List of usage examples for org.apache.shiro.util RegExPatternMatcher RegExPatternMatcher

Introduction

In this page you can find the example usage for org.apache.shiro.util RegExPatternMatcher RegExPatternMatcher.

Prototype

RegExPatternMatcher

Source Link

Usage

From source file:com.google.code.lightssh.project.security.shiro.MySecondaryLicensePermissionsAuthorizationFilter.java

public MySecondaryLicensePermissionsAuthorizationFilter(boolean regexExp) {
    super();//from w w  w.  j av  a  2s  .c  o  m

    this.regexExpMatcher = regexExp;
    if (regexExp) {
        pathMatcher = new RegExPatternMatcher();
    }
}