Interface ContextSettings
-
- All Known Implementing Classes:
ContextConfigurationContextSettings
public interface ContextSettingsContract to hold settings for creating an LDAP context.- Since:
- 1.0
- Author:
- James Kleeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()java.lang.StringgetDn()java.lang.StringgetFactory()java.lang.StringgetPassword()booleangetPooled()java.lang.StringgetUrl()
-
-
-
Method Detail
-
getPooled
boolean getPooled()
- Returns:
- True if the context should be pooled
-
getFactory
java.lang.String getFactory()
- Returns:
- The factory class
-
getUrl
java.lang.String getUrl()
- Returns:
- The URL of the LDAP server
-
getDn
java.lang.String getDn()
- Returns:
- The user DN to bind with
-
getPassword
java.lang.String getPassword()
- Returns:
- The password to bind with
-
getAdditionalProperties
default java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
- Returns:
- Any additional properties
-
-