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
243 B

  1. import java.io.InputStream;
  2. import java.io.OutputStream;
  3. public interface PasswordManagerInterface {
  4. public static void main(String[] args) {
  5. };
  6. public void listVaults();
  7. public void openVault();
  8. public void showMenu();
  9. }