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.

11 lines
261 B

  1. public interface CredentialRepositoryInterface {
  2. void createNewCredential(String name, String password);
  3. void edit();
  4. void delete();
  5. void getCredentials();
  6. void setCredentials();
  7. void getAsJSON();
  8. void loadCredentialsFromJSON();
  9. }