@@ -51,7 +51,6 @@ public class SAMLAuthneticatorConfiguration
5151 private boolean requireSignedAssertion ;
5252 private boolean defSignRequest ;
5353 private List <String > defaultRequestedNameFormat ;
54- private String registrationForm ;
5554 private boolean defAccountAssociation ;
5655 private List <SAMLAuthnTrustedFederationConfiguration > trustedFederations ;
5756 private List <SAMLIndividualTrustedSamlIdpConfiguration > individualTrustedIdps ;
@@ -100,11 +99,6 @@ public String toProperties(PKIManagement pkiMan, FileStorageService fileService,
10099 .put (SAMLSPProperties .P + SAMLSPProperties .DEF_REQUESTED_NAME_FORMAT , d ));
101100 }
102101
103- if (getRegistrationForm () != null )
104- {
105- raw .put (SAMLSPProperties .P + CommonWebAuthnProperties .REGISTRATION_FORM , getRegistrationForm ());
106- }
107-
108102 raw .put (SAMLSPProperties .P + CommonWebAuthnProperties .DEF_ENABLE_ASSOCIATION ,
109103 String .valueOf (isDefAccountAssociation ()));
110104
@@ -185,7 +179,6 @@ public void fromProperties(PKIManagement pkiMan, URIAccessService uriAccessServi
185179 setDefSignRequest (samlSpProp .getBooleanValue (SAMLSPProperties .DEF_SIGN_REQUEST ));
186180 String defNameFormat = samlSpProp .getValue (SAMLSPProperties .DEF_REQUESTED_NAME_FORMAT );
187181 setDefaultRequestedNameFormat (defNameFormat != null ? Arrays .asList (defNameFormat ) : null );
188- setRegistrationForm (samlSpProp .getValue (CommonWebAuthnProperties .REGISTRATION_FORM ));
189182 if (samlSpProp .isSet (CommonWebAuthnProperties .DEF_ENABLE_ASSOCIATION ))
190183 {
191184 setDefAccountAssociation (
@@ -344,16 +337,6 @@ public void setDefaultRequestedNameFormat(List<String> defaultRequestedNameForma
344337 this .defaultRequestedNameFormat = defaultRequestedNameFormat ;
345338 }
346339
347- public String getRegistrationForm ()
348- {
349- return registrationForm ;
350- }
351-
352- public void setRegistrationForm (String registrationForm )
353- {
354- this .registrationForm = registrationForm ;
355- }
356-
357340 public boolean isDefAccountAssociation ()
358341 {
359342 return defAccountAssociation ;
0 commit comments