@Retention(value=RUNTIME) @Target(value=METHOD) public @interface PasswordVerifier
This annotation can be used to mark a method of a PrincipalEntity class is used to verify password.
The method signature must be either
public boolean methodName(char[] password);
Or
public boolean methodName(String password);
Copyright © 2015–2019 ActFramework. All rights reserved.