1
0
mirror of synced 2026-08-02 16:27:08 +00:00

Add Mapping to Invalid Bearer Token

Fixes gh-7793
This commit is contained in:
Josh Cummings
2020-01-13 16:16:13 -07:00
parent 25d029b092
commit fbdecdafb8
2 changed files with 56 additions and 1 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -92,6 +92,9 @@ public class DefaultAuthenticationEventPublisher implements AuthenticationEventP
addMapping(
"org.springframework.security.authentication.cas.ProxyUntrustedException",
AuthenticationFailureProxyUntrustedEvent.class);
addMapping(
"org.springframework.security.oauth2.server.resource.InvalidBearerTokenException",
AuthenticationFailureBadCredentialsEvent.class);
}
public void publishAuthenticationSuccess(Authentication authentication) {