protected void removeSamlJaas()

in src/main/java/org/apache/sling/auth/saml2/Activator.java [95:103]


    protected void removeSamlJaas() throws IOException, InvalidSyntaxException {
        Configuration[] configs = configAdmin.listConfigurations("(jaas.classname=org.apache.sling.auth.saml2.sp.Saml2LoginModule)");
        if (configs == null){
            return;
        }
        for ( Configuration config : configs){
            config.delete();
        }
    }