public interface VaultInterface { void configure(); void addCredential(String userName, String password); void showCredential(String str); void getAsJson(); void loadFromJson(); }