org.springframework.security.saml.log.SAMLDefaultLogger Java Examples

The following examples show how to use org.springframework.security.saml.log.SAMLDefaultLogger. 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: InsightsSecurityConfigurationAdapterSAML.java    From Insights with Apache License 2.0 5 votes vote down vote up
@Bean
@Conditional(InsightsSAMLBeanInitializationCondition.class)
public SAMLDefaultLogger samlLogger() {

	SAMLDefaultLogger samlDefaultLogger = new SAMLDefaultLogger();
	samlDefaultLogger.setLogAllMessages(true);
	samlDefaultLogger.setLogErrors(true);
	samlDefaultLogger.setLogMessagesOnException(true);
	return samlDefaultLogger;
}
 
Example #2
Source File: SamlConfig.java    From blackduck-alert with Apache License 2.0 4 votes vote down vote up
@Bean
public SAMLDefaultLogger samlLogger() {
    return new SAMLDefaultLogger();
}
 
Example #3
Source File: SAMLServiceProviderSecurityConfiguration.java    From spring-boot-security-saml with MIT License 4 votes vote down vote up
@Bean
@ConditionalOnMissingBean
public SAMLLogger samlLogger() {
    return new SAMLDefaultLogger();
}
 
Example #4
Source File: WebSecurityConfig.java    From spring-tsers-auth with Apache License 2.0 4 votes vote down vote up
@Bean
public SAMLDefaultLogger samlLogger() {
    return new SAMLDefaultLogger();
}
 
Example #5
Source File: SAMLConfigDefaults.java    From spring-boot-security-saml-samples with MIT License 4 votes vote down vote up
@Bean
public SAMLDefaultLogger samlLogger() {
    return new SAMLDefaultLogger();
}
 
Example #6
Source File: WebSecurityConfig.java    From spring-boot-security-saml-sample with Apache License 2.0 4 votes vote down vote up
@Bean
public SAMLDefaultLogger samlLogger() {
    return new SAMLDefaultLogger();
}