Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added setters to LdapConfig to better support Spring @ConfigProps #11

Merged
merged 1 commit into from
Feb 12, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}