List of usage examples for org.apache.shiro.guice.web ShiroWebModule subclass-usage
From source file com.blazarquant.bfp.core.security.SecurityModule.java
/** * @author Wojciech Zankowski */ public class SecurityModule extends ShiroWebModule { public SecurityModule(ServletContext servletContext) {
From source file com.github.richardwilly98.esdms.shiro.EsShiroWebModule.java
public class EsShiroWebModule extends ShiroWebModule { private final Logger log = Logger.getLogger(this.getClass()); public EsShiroWebModule(ServletContext servletContext, String securityFilterPath) { super(servletContext);
From source file com.github.richardwilly98.esdms.shiro.TestEsShiroWebModule.java
public class TestEsShiroWebModule extends ShiroWebModule { // private final String securityFilterPath; private final Logger log = Logger.getLogger(this.getClass()); public TestEsShiroWebModule(ServletContext servletContext, String securityFilterPath) {
From source file com.ikanow.aleph2.security.module.IkanowMockLoginWebSecurityModule.java
public class IkanowMockLoginWebSecurityModule extends ShiroWebModule { private static final Logger logger = LogManager.getLogger(IkanowMockLoginWebSecurityModule.class); protected static Map<String, Set<String>> rolesMap = new HashMap<String, Set<String>>(); protected static Map<String, Set<String>> permissionsMap = new HashMap<String, Set<String>>(); protected static Map<String, AuthorizationBean> authMap = new HashMap<String, AuthorizationBean>();
From source file com.ikanow.aleph2.security.module.IkanowV1WebSecurityModule.java
public class IkanowV1WebSecurityModule extends ShiroWebModule { private static final Logger logger = LogManager.getLogger(IkanowV1WebSecurityModule.class); public IkanowV1WebSecurityModule(ServletContext sc) { super(sc); }
From source file com.ikanow.aleph2_api.security.module.IkanowApiSecurityModule.java
public class IkanowApiSecurityModule extends ShiroWebModule { private static final Logger logger = LogManager.getLogger(IkanowApiSecurityModule.class); protected static Map<String, Set<String>> rolesMap = new HashMap<String, Set<String>>(); protected static Map<String, Set<String>> permissionsMap = new HashMap<String, Set<String>>(); protected static Map<String, AuthorizationBean> authMap = new HashMap<String, AuthorizationBean>();
From source file com.thjug.bgile.module.ShiroWebModuleImpl.java
/** * * @author @nuboat */ public class ShiroWebModuleImpl extends ShiroWebModule {
From source file influent.server.auth.SimpleShiroAuthModule.java
/** * @author rharper * */ public class SimpleShiroAuthModule extends ShiroWebModule {
From source file oculus.aperture.test.SimpleShiroAuthModule.java
/** * @author rharper * */ public class SimpleShiroAuthModule extends ShiroWebModule {
From source file org.apache.metron.dataservices.modules.guice.DefaultShiroWebModule.java
public class DefaultShiroWebModule extends ShiroWebModule { private static final Logger logger = LoggerFactory.getLogger(DefaultShiroWebModule.class); private Properties configProps;