Fix blacklist/whitelist for DynamicRegistrationClientConfigurationService
ClientConfigurationService#getClientConfiguration has ServerConfiguration as parameter, not Stringpull/822/merge
parent
caf85b990d
commit
effe955953
|
@ -76,11 +76,11 @@ public class DynamicRegistrationClientConfigurationService implements ClientConf
|
||||||
@Override
|
@Override
|
||||||
public RegisteredClient getClientConfiguration(ServerConfiguration issuer) {
|
public RegisteredClient getClientConfiguration(ServerConfiguration issuer) {
|
||||||
try {
|
try {
|
||||||
if (!whitelist.isEmpty() && !whitelist.contains(issuer)) {
|
if (!whitelist.isEmpty() && !whitelist.contains(issuer.getIssuer())) {
|
||||||
throw new AuthenticationServiceException("Whitelist was nonempty, issuer was not in whitelist: " + issuer);
|
throw new AuthenticationServiceException("Whitelist was nonempty, issuer was not in whitelist: " + issuer);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (blacklist.contains(issuer)) {
|
if (blacklist.contains(issuer.getIssuer())) {
|
||||||
throw new AuthenticationServiceException("Issuer was in blacklist: " + issuer);
|
throw new AuthenticationServiceException("Issuer was in blacklist: " + issuer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue