Add method getPort in ApacheDSContainer

Fixes gh-7236
This commit is contained in:
Eddú Meléndez 2019-08-08 13:41:17 -05:00 committed by Josh Cummings
parent fb39d9c255
commit 76718c4db6

View File

@ -186,6 +186,10 @@ public class ApacheDSContainer implements InitializingBean, DisposableBean, Life
this.port = port;
}
public int getPort() {
return this.port;
}
/**
* If set to {@code true} will enable LDAP over SSL (LDAPs). If set to {@code true}
* {@link ApacheDSContainer#setCertificatePassord(String)} must be set as well.