List of usage examples for org.apache.shiro.web.servlet ShiroFilter subclass-usage
From source file com.enioka.jqm.webui.shiro.ShiroFilter.java
/** * This filter extends the usual ShiroFilter by checking in the database if security should be enabled or not. * */ public class ShiroFilter extends org.apache.shiro.web.servlet.ShiroFilter { @Override
From source file com.flowlogix.security.ShiroFilter.java
/**
* Stops JEE server from interpreting Shiro principal as direct EJB principal,
* this has sideffects of trying to log in to remote EJBs with the credentials from Shiro,
* which isn't what this meant to do, as it's meant to just transfer Shiro credentials
* to remote EJB call site.
*
From source file com.sonicle.webtop.core.app.shiro.WTShiroFilter.java
/** * * @author malbinola */ public class WTShiroFilter extends ShiroFilter { /*
From source file edu.usu.sdl.openstorefront.web.init.ShiroAdjustedFilter.java
/** * * @author dshurtleff */ public class ShiroAdjustedFilter extends ShiroFilter {
From source file org.eclipse.kapua.app.api.auth.KapuaSessionAuthFilter.java
/** * {@link ShiroFilter} override. Used to intercept the http request execute and plug into thread context the Kapua session * */ public class KapuaSessionAuthFilter extends ShiroFilter {
From source file org.eclipse.kapua.app.console.filter.KapuaWebFilter.java
/** * {@link ShiroFilter} override. Used to intercept the http request execute and plug into thread context the Kapua session * */ public class KapuaWebFilter extends ShiroFilter {
From source file org.opendaylight.aaa.shiro.filters.AAAFilter.java
/**
* The RESTCONF AAA JAX-RS 1.X Web Filter. This class is also responsible for
* delivering debug information; to enable these debug statements, please issue
* the following in the karaf shell:
*
* <code>log:set debug org.opendaylight.aaa.shiro.filters.AAAFilter</code>
From source file org.opendaylight.aaa.shiro.filters.AAAShiroFilter.java
/**
* The default AAA JAX-RS 1.X Web Filter. Unlike AAAFilter, which is aimed towards
* supporting RESTCONF and its existing API mechanisms, AAAShiroFilter is a generic
* <code>ShiroFilter</code> for use with any other ODL Servlets. The main difference
* is that <code>AAAFilter</code> was designed to support the existing noauth
* mechanism, while this filter cannot be disabled.
From source file org.panifex.security.shiro.SecurityFilterImpl.java
public class SecurityFilterImpl extends ShiroFilter implements SecurityFilter { private final Logger log = LoggerFactory.getLogger(getClass()); private EnvironmentLoader loader; private String loginUrl = WebApplicationConstants.DEFAULT_LOGIN_URL;