publicclassExample {Database database;publicvoidconnect() {// Replace MongoDB() with your database typethis.database=newMongoDB();Map<String,String> credentials =newHashMap<>();credentials.put("name","name of db");credentials.put("username","username");credentials.put("password","password");credentials.put("host","DNS or IP");credentials.put("port","port");this.database.connect(credentials); }}