From a42ef10eb104988fda3b693153e421b898fc3a77 Mon Sep 17 00:00:00 2001 From: Gabby Date: Wed, 20 Jun 2018 17:23:02 -0400 Subject: [PATCH] Temporary patch for issue #104 Changed by Gabby while com.dotcms.plugin.saml.v3.BindingType.java is introduced back in the latest code --- .../dotcms/plugin/saml/v3/parameters/DotsamlProperties.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/com/dotcms/plugin/saml/v3/parameters/DotsamlProperties.java b/src/com/dotcms/plugin/saml/v3/parameters/DotsamlProperties.java index 4fe2687..e711486 100644 --- a/src/com/dotcms/plugin/saml/v3/parameters/DotsamlProperties.java +++ b/src/com/dotcms/plugin/saml/v3/parameters/DotsamlProperties.java @@ -40,7 +40,9 @@ public class DotsamlProperties { private String dotcmsSamlNameIdPolicyFormat = NameIDType.PERSISTENT; private String dotcmsSamlOptionalUserRole = null; private Boolean dotcmsSamlPolicyAllowCreate = false; - private String dotcmsSamlProtocolBinding = SAMLConstants.SAML2_ARTIFACT_BINDING_URI; + // Changed by Gabby while com.dotcms.plugin.saml.v3.BindingType.java is introduced back in the latest code + // private String dotcmsSamlProtocolBinding = SAMLConstants.SAML2_ARTIFACT_BINDING_URI; + private String dotcmsSamlProtocolBinding = SAML2_REDIRECT_BINDING_URI; private String dotSamlRemoveRolesPrefix = StringUtils.EMPTY; private String dotSamlServiceProviderCustomCredentialProviderClassname = null; private Boolean dotcmsSamlUseEncryptedDescriptor = false;