/**
* Sets the issuerID and IDP SSO Service URL during the server start-up by reading authenticators.xml
*/
public static boolean initSSOConfigParams() {
boolean initSuccess = false;
AuthenticatorsConfiguration authenticatorsConfiguration = AuthenticatorsConfiguration.getInstance();
AuthenticatorsConfiguration.AuthenticatorConfig authenticatorConfig =
authenticatorsConfiguration.getAuthenticatorConfig(SAML2SSOAuthenticatorConstants.AUTHENTICATOR_NAME);
// if the authenticator is disabled, then do not register the servlet filter.
if(authenticatorConfig.isDisabled()){
return initSuccess;
}
if (authenticatorConfig != null) {