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() {