Skip to content

Commit

Permalink
Merge pull request #11 from esbtools/ldap-config-setters
Browse files Browse the repository at this point in the history
Added setters to LdapConfig to better support Spring @ConfigProps
  • Loading branch information
dcrissman committed Feb 12, 2018
2 parents 4235aa6 + 1a77388 commit 116e794
Showing 1 changed file with 56 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,60 @@ public String toString() {
", retryIntervalSeconds=" + retryIntervalSeconds +
'}';
}

public void setServer(String server) {
this.server = server;
}

public void setPort(Integer port) {
this.port = port;
}

public void setBindDn(String bindDn) {
this.bindDn = bindDn;
}

public void setBindDNPwd(String bindDNPwd) {
this.bindDNPwd = bindDNPwd;
}

public void setUseSSL(Boolean useSSL) {
this.useSSL = useSSL;
}

public void setTrustStore(String trustStore) {
this.trustStore = trustStore;
}

public void setTrustStorePassword(String trustStorePassword) {
this.trustStorePassword = trustStorePassword;
}

public void setPoolSize(Integer poolSize) {
this.poolSize = poolSize;
}

public void setPoolMaxConnectionAgeMS(Integer poolMaxConnectionAgeMS) {
this.poolMaxConnectionAgeMS = poolMaxConnectionAgeMS;
}

public void setConnectionTimeoutMS(Integer connectionTimeoutMS) {
this.connectionTimeoutMS = connectionTimeoutMS;
}

public void setResponseTimeoutMS(Integer responseTimeoutMS) {
this.responseTimeoutMS = responseTimeoutMS;
}

public void setDebug(boolean debug) {
this.debug = debug;
}

public void setKeepAlive(boolean keepAlive) {
this.keepAlive = keepAlive;
}

public void setRetryIntervalSeconds(Integer retryIntervalSeconds) {
this.retryIntervalSeconds = retryIntervalSeconds;
}
}

0 comments on commit 116e794

Please sign in to comment.