AEM Custom Saml Authentication Handler
We are trying to extend OOTB AEM com.adobe.granite.auth.saml.SamlAuthenticationHandler, but since this bundle does not have any exported packages in AEM . We are not able to extend the functionality.
public class CustomSamlAuthHandler extends SamlAuthenticationHandler {
protected AuthnRequest createAuthnRequest() {
AuthnRequest authnRequest = super.createAuthnRequest();
//update AuthRequest
return authnRequest;
}
}