org.springframework.security.saml.processor.HTTPPostBinding Java Examples
The following examples show how to use
org.springframework.security.saml.processor.HTTPPostBinding.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AuthenticationHandler.java From blackduck-alert with Apache License 2.0 | 4 votes |
@Bean public HTTPPostBinding httpPostBinding() { return new HTTPPostBinding(parserPool(), velocityEngine()); }
Example #2
Source File: InsightsSecurityConfigurationAdapterSAML.java From Insights with Apache License 2.0 | 4 votes |
@Bean @Conditional(InsightsSAMLBeanInitializationCondition.class) public HTTPPostBinding httpPostBinding() { return new HTTPPostBinding(parserPool(), velocityEngine()); }
Example #3
Source File: SAMLConfigurer.java From spring-security-saml-dsl with MIT License | 4 votes |
private HTTPPostBinding httpPostBinding(ParserPool parserPool) { return new HTTPPostBinding(parserPool, VelocityFactory.getEngine()); }
Example #4
Source File: WebSecurityConfig.java From spring-boot-security-saml-sample with Apache License 2.0 | 4 votes |
@Bean public HTTPPostBinding httpPostBinding() { return new HTTPPostBinding(parserPool(), velocityEngine()); }