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());
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.