All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tiogasolutions.notify.sender.couch.CouchNotificationSenderSetup Maven / Gradle / Ivy

There is a newer version: 5.1.4
Show newest version
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