Package org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry

Examples of org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry.UrlMapping


            throw new IllegalStateException("permitAll only works with HttpSecurity.authorizeRequests()");
        }

        for(RequestMatcher matcher : requestMatchers) {
            if(matcher != null) {
                configurer.getRegistry().addMapping(0, new UrlMapping(matcher, SecurityConfig.createList(ExpressionUrlAuthorizationConfigurer.permitAll)));
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.security.config.annotation.web.configurers.AbstractConfigAttributeRequestMatcherRegistry.UrlMapping

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.