From bdf62eaa361fbc403d6fc41c205fe9fc995a1560 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Tue, 10 Sep 2013 16:35:51 -0400 Subject: [PATCH] need to check the sector identifier at some point --- .../openid/connect/web/ClientDynamicRegistrationEndpoint.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientDynamicRegistrationEndpoint.java b/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientDynamicRegistrationEndpoint.java index b8b2adbad..80be94bf3 100644 --- a/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientDynamicRegistrationEndpoint.java +++ b/openid-connect-server/src/main/java/org/mitre/openid/connect/web/ClientDynamicRegistrationEndpoint.java @@ -163,6 +163,8 @@ public class ClientDynamicRegistrationEndpoint { // this client has been dynamically registered (obviously) newClient.setDynamicallyRegistered(true); + // TODO: check and enforce the sector URI if it's not null (#504) + // now save it ClientDetailsEntity savedClient = clientService.saveNewClient(newClient);