Interface ContextSettings
-
- All Known Implementing Classes:
ContextConfigurationContextSettings
public interface ContextSettings
Contract 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.String
getDn()
java.lang.String
getFactory()
java.lang.String
getPassword()
boolean
getPooled()
java.lang.String
getUrl()
-
-
-
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
-
-