List of usage examples for org.apache.shiro.web.filter.authc AuthenticatingFilter subclass-usage
From source file b4f.seguridad.filtros.LoginFilter.java
public class LoginFilter extends AuthenticatingFilter { private static final boolean DEBUG = false; @Override protected AuthenticationToken createToken(ServletRequest request, ServletResponse sr1) throws Exception {
From source file cn.com.rexen.ext.shiro.web.filter.authc.X509AuthenticationFilter.java
public class X509AuthenticationFilter extends AuthenticatingFilter { private static final Logger LOGGER = LoggerFactory.getLogger(X509AuthenticationFilter.class); @Override protected boolean onAccessDenied(ServletRequest request, ServletResponse response) throws Exception {
From source file co.edu.uniandes.csw.miso4204.security.auth.SecurityFilter.java
/** * * @author estudiante */ public class SecurityFilter extends AuthenticatingFilter {
From source file co.edu.uniandes.csw.miso4204.security.SecurityFilter.java
public class SecurityFilter extends AuthenticatingFilter { @Override protected AuthenticationToken createToken(ServletRequest request, ServletResponse sr1) throws Exception { HttpServletRequest httpRequest = WebUtils.toHttp(request); return new JwtToken(httpRequest.getHeader("x_rest_user"));
From source file co.edu.uniandes.csw.uniandes.api.JWT.filter.LoginFilter.java
/** * * @author Jj.alarcon10 */ public class LoginFilter extends AuthenticatingFilter {
From source file co.edu.uniandes.csw.uniandes.seguridad.LoginFilter.java
/** * * @author Jj.alarcon10 */ public class LoginFilter extends AuthenticatingFilter {
From source file co.edu.uniandes.hospitalkennedy.security.otro.SecurityFilter.java
/** * * @author estudiante */ public class SecurityFilter extends AuthenticatingFilter {
From source file com.github.ibole.infrastructure.web.security.spring.shiro.filter.StatelessAuthFilter.java
/**
* <pre>
*
* When you call Subject.login(AuthenticationToken), the token makes its
* way to the SecurityManager. The SecurityManager calls a wrapped delegate Authenticator.
* This Authenticator uses an AuthenticationStrategy to interact with one or more Realms to
From source file com.josue.shiro.token.based.custom.APIKeyAuthenticatingFilter.java
/** * * @author Josue */ public class APIKeyAuthenticatingFilter extends AuthenticatingFilter {
From source file com.smile.core.shiro.FormAuthenticationFilter.java
/**
* Requires the requesting user to be authenticated for the request to continue, and if they are not, forces the user
* to login via by redirecting them to the {@link #setLoginUrl(String) loginUrl} you configure.
* <p/>
* <p>This filter constructs a {@link UsernamePasswordToken UsernamePasswordToken} with the values found in
* {@link #setUsernameParam(String) username}, {@link #setPasswordParam(String) password},