You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
350 B

  1. public interface CredentialRepositoryInterface {
  2. int createNewCredential(String name, String password);
  3. Credential getCredentialsViaName(String needle);
  4. Credential getCredentialsViaId(int id);
  5. void updatePassword(int index, String newPassword);
  6. void updateUsername(int indexl, String newUsername);
  7. void delete(int index);
  8. }