Interface LDAPConfigSourceConfiguration
-
- All Superinterfaces:
ConfigBeanProxy,ConfigSourceConfiguration
public interface LDAPConfigSourceConfiguration extends ConfigSourceConfiguration
- Author:
- Gaurav Gupta
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
ConfigBeanProxy.Duck
-
-
Field Summary
Fields Modifier and Type Field Description static StringAUTH_TYPE_NONEstatic StringAUTH_TYPE_SIMPLEstatic StringLDAP_CONNECT_TIMEOUTstatic StringLDAP_CONTEXT_FACTORYstatic StringLDAP_READ_TIMEOUTstatic StringSEARCH_SCOPE_OBJECTstatic StringSEARCH_SCOPE_ONELEVELstatic StringSEARCH_SCOPE_SUBTREE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthType()StringgetBindDN()StringgetBindDNPassword()StringgetConnectionTimeout()StringgetReadTimeout()StringgetSearchBase()StringgetSearchFilter()StringgetSearchScope()StringgetStartTLSEnabled()StringgetUrl()voidsetAuthType(String authType)voidsetBindDN(String bindDN)voidsetBindDNPassword(String bindDNPassword)voidsetConnectionTimeout(String connectionTimeout)voidsetReadTimeout(String readTimeout)voidsetSearchBase(String searchBase)voidsetSearchFilter(String searchFilter)voidsetSearchScope(String searchScope)voidsetStartTLSEnabled(String startTLSEnabled)voidsetUrl(String url)-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
Methods inherited from interface fish.payara.nucleus.microprofile.config.spi.ConfigSourceConfiguration
getEnabled, setEnabled
-
-
-
-
Field Detail
-
AUTH_TYPE_SIMPLE
static final String AUTH_TYPE_SIMPLE
- See Also:
- Constant Field Values
-
AUTH_TYPE_NONE
static final String AUTH_TYPE_NONE
- See Also:
- Constant Field Values
-
SEARCH_SCOPE_SUBTREE
static final String SEARCH_SCOPE_SUBTREE
- See Also:
- Constant Field Values
-
SEARCH_SCOPE_ONELEVEL
static final String SEARCH_SCOPE_ONELEVEL
- See Also:
- Constant Field Values
-
SEARCH_SCOPE_OBJECT
static final String SEARCH_SCOPE_OBJECT
- See Also:
- Constant Field Values
-
LDAP_CONTEXT_FACTORY
static final String LDAP_CONTEXT_FACTORY
- See Also:
- Constant Field Values
-
LDAP_CONNECT_TIMEOUT
static final String LDAP_CONNECT_TIMEOUT
- See Also:
- Constant Field Values
-
LDAP_READ_TIMEOUT
static final String LDAP_READ_TIMEOUT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getUrl
String getUrl()
-
setUrl
void setUrl(String url)
-
getAuthType
String getAuthType()
-
setAuthType
void setAuthType(String authType)
-
getStartTLSEnabled
String getStartTLSEnabled()
-
setStartTLSEnabled
void setStartTLSEnabled(String startTLSEnabled)
-
getBindDN
String getBindDN()
-
setBindDN
void setBindDN(String bindDN)
-
getBindDNPassword
String getBindDNPassword()
-
setBindDNPassword
void setBindDNPassword(String bindDNPassword)
-
getSearchBase
String getSearchBase()
-
setSearchBase
void setSearchBase(String searchBase)
-
getSearchFilter
String getSearchFilter()
-
setSearchFilter
void setSearchFilter(String searchFilter)
-
getSearchScope
String getSearchScope()
-
setSearchScope
void setSearchScope(String searchScope)
-
getConnectionTimeout
String getConnectionTimeout()
-
setConnectionTimeout
void setConnectionTimeout(String connectionTimeout)
-
getReadTimeout
String getReadTimeout()
-
setReadTimeout
void setReadTimeout(String readTimeout)
-
-