Class AadAppRoleStatelessAuthenticationFilter
- java.lang.Object
-
- org.springframework.web.filter.GenericFilterBean
-
- org.springframework.web.filter.OncePerRequestFilter
-
- com.azure.spring.cloud.autoconfigure.aad.filter.AadAppRoleStatelessAuthenticationFilter
-
- All Implemented Interfaces:
javax.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.EnvironmentAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
public class AadAppRoleStatelessAuthenticationFilter extends org.springframework.web.filter.OncePerRequestFilterA stateless authentication filter which uses app roles feature of Azure Active Directory. Since it's a stateless implementation so the principal will not be stored in session. By using roles claim in the token it will not call Microsoft Graph to retrieve users' groups.- See Also:
OncePerRequestFilter
-
-
Constructor Summary
Constructors Constructor Description AadAppRoleStatelessAuthenticationFilter(UserPrincipalManager principalManager)Creates a new instance ofAadAppRoleStatelessAuthenticationFilter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoFilterInternal(javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse, javax.servlet.FilterChain filterChain)Do filter.protected Set<org.springframework.security.core.authority.SimpleGrantedAuthority>toSimpleGrantedAuthoritySet(UserPrincipal userPrincipal)Converts to user principal to a set of simple granted authorities.-
Methods inherited from class org.springframework.web.filter.OncePerRequestFilter
doFilter, doFilterNestedErrorDispatch, getAlreadyFilteredAttributeName, isAsyncDispatch, isAsyncStarted, shouldNotFilter, shouldNotFilterAsyncDispatch, shouldNotFilterErrorDispatch
-
-
-
-
Constructor Detail
-
AadAppRoleStatelessAuthenticationFilter
public AadAppRoleStatelessAuthenticationFilter(UserPrincipalManager principalManager)
Creates a new instance ofAadAppRoleStatelessAuthenticationFilter.- Parameters:
principalManager- the user principal manager
-
-
Method Detail
-
doFilterInternal
protected void doFilterInternal(javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse, javax.servlet.FilterChain filterChain) throws javax.servlet.ServletException, IOExceptionDo filter.- Specified by:
doFilterInternalin classorg.springframework.web.filter.OncePerRequestFilter- Parameters:
httpServletRequest- the httpServletRequesthttpServletResponse- the httpServletResponsefilterChain- the filterChain- Throws:
javax.servlet.ServletExceptionIOException
-
toSimpleGrantedAuthoritySet
protected Set<org.springframework.security.core.authority.SimpleGrantedAuthority> toSimpleGrantedAuthoritySet(UserPrincipal userPrincipal)
Converts to user principal to a set of simple granted authorities.- Parameters:
userPrincipal- the user principal- Returns:
- A set of SimpleGrantedAuthoritys
-
-