in src/main/java/org/apache/sling/auth/saml2/impl/AbstractSamlHandler.java [55:74]
void setConfigs(final AuthenticationHandlerSAML2Config config){
this.path = config.path();
this.saml2SessAttr = config.saml2SessionAttr();
this.saml2SPEnabled = config.saml2SPEnabled();
this.saml2SPEncryptAndSign = config.saml2SPEncryptAndSign();
this.saml2IDPDestination = config.saml2IDPDestination();
this.uidAttrName = config.saml2userIDAttr();
this.samlUserHome = config.saml2userHome();
this.groupMembershipName = config.saml2groupMembershipAttr();
this.entityID = config.entityID();
this.jksFileLocation = config.jksFileLocation();
this.jksStorePassword = config.jksStorePassword();
this.spKeysAlias = config.spKeysAlias();
this.spKeysPassword = config.spKeysPassword();
this.idpCertAlias = config.idpCertAlias();
this.acsPath = config.acsPath();
this.syncAttrs = config.syncAttrs();
this.saml2LogoutURL = config.saml2LogoutURL();
setSyncMap();
}