org.springframework.security.saml.websso.WebSSOProfileImpl Java Examples
The following examples show how to use
org.springframework.security.saml.websso.WebSSOProfileImpl.
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: SamlConfig.java From blackduck-alert with Apache License 2.0 | 4 votes |
@Bean public WebSSOProfile webSSOprofile() { return new WebSSOProfileImpl(); }
Example #2
Source File: InsightsSecurityConfigurationAdapterSAML.java From Insights with Apache License 2.0 | 4 votes |
/** * SAML 2.0 Web SSO profile * * @return */ @Bean @Conditional(InsightsSAMLBeanInitializationCondition.class) public WebSSOProfile webSSOprofile() { return new WebSSOProfileImpl(); }
Example #3
Source File: WebSSOProfileConfigurer.java From spring-boot-security-saml with MIT License | 4 votes |
@VisibleForTesting protected WebSSOProfile createDefaultWebSSOProfile() { return new WebSSOProfileImpl(); }
Example #4
Source File: WebSecurityConfig.java From spring-boot-security-saml-sample with Apache License 2.0 | 4 votes |
@Bean public WebSSOProfile webSSOprofile() { return new WebSSOProfileImpl(); }