[Task 70808] added javadoc

This commit is contained in:
Raf Ponsaerts
2020-05-11 11:51:38 +02:00
parent ea47ef0c92
commit 8ff77a9e6d

View File

@@ -47,5 +47,10 @@ public interface AccountService {
public void deleteToken(Context context, String token)
throws SQLException;
/**
* This method verifies that a certain String adheres to the password rules for DSpace
* @param password The String to be checked
* @return A boolean indicating whether or not the given String adheres to the password rules
*/
public boolean verifyPasswordStructure(String password);
}