
org.tiogasolutions.notify.sender.couch.CouchNotificationSenderSetup Maven / Gradle / Ivy
package org.tiogasolutions.notify.sender.couch;
public class CouchNotificationSenderSetup {
private final String couchUrl;
private final String databaseName;
private final String username;
private final String password;
public CouchNotificationSenderSetup(String couchUrl, String databaseName, String username, String password) {
this.couchUrl = couchUrl;
this.databaseName = databaseName;
this.username = username;
this.password = password;
}
public String getCouchUrl() {
return couchUrl;
}
public String getDatabaseName() {
return databaseName;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy