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