From 01450046200e2937fdc1021e157115c8e74447c1 Mon Sep 17 00:00:00 2001 From: chasegawa Date: Fri, 7 Oct 2022 10:41:06 -0700 Subject: [PATCH] SHIBUI-2380 changing default for existing relying overrides to be either oidc or saml --- .../admin/ui/domain/RelyingPartyOverrideProperty.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/domain/RelyingPartyOverrideProperty.java b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/domain/RelyingPartyOverrideProperty.java index 622b50f69..c76455f23 100644 --- a/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/domain/RelyingPartyOverrideProperty.java +++ b/backend/src/main/java/edu/internet2/tier/shibboleth/admin/ui/domain/RelyingPartyOverrideProperty.java @@ -27,7 +27,7 @@ public class RelyingPartyOverrideProperty implements IRelyingPartyOverrideProper private String name; private String persistType; private String persistValue; - private String protocol = "saml"; + private String protocol = "saml, oidc"; @Override public Boolean getFromConfigFile() { @@ -46,7 +46,7 @@ public CustomAttributeType getAttributeType() { } public String getProtocol() { - return protocol == null ? "saml" : protocol; + return protocol == null ? "saml, oidc" : protocol; } public String getTypeForUI() {