I m desigbing a custom Authenticator which in herits CrowdAuthenticator. I have thereby replaced SSOSeraphAuthenticator in seraph-config.xml by my custom Authenticator. How ever, my JIRA is unable to start as the log confirms that my authentificator which inherits CrowdAuthenticator bears the below constructeur could not be instantiated.
SsoCustomAuthenticator(CrowdHttpAuthenticator crowdHttpAuthenticator)
It is obvious because the construteur carries an argument as I dont have a choice(Implicit super). Have any one of you seen this kind of problem before?
P.S:
I have solved the problem by myself, thereby the code below:
public VsjSsoAuthenticator(CrowdHttpAuthenticator crowdHttpAuthenticator) {
super(crowdHttpAuthenticator);
}
public VsjSsoAuthenticator()
{
this(RestCrowdHttpAuthenticationFactory.getAuthenticator());
}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.