Skip to content

Commit

Permalink
password provider setter added
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Jun 4, 2020
1 parent a04f478 commit 720be89
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -41,6 +41,10 @@ public class PasswordProvider extends AbstractCredentialProvider<PasswordAuthent
@Autowired
private transient AuthenticationEvaluator<PasswordAuthenticationContext> passwordAuthenticationEvaluator;

public void setPasswordAuthenticationEvaluator(AuthenticationEvaluator<PasswordAuthenticationContext> passwordAuthenticationEvaluator) {
this.passwordAuthenticationEvaluator = passwordAuthenticationEvaluator;
}

@Override
protected AuthenticationEvaluator<PasswordAuthenticationContext> getEvaluator() {
return passwordAuthenticationEvaluator;
Expand Down

0 comments on commit 720be89

Please sign in to comment.