Interface BaseLdapPathSource
-
- All Known Subinterfaces:
BaseLdapPathContextSource
- All Known Implementing Classes:
AbstractContextSource,DelegatingBaseLdapPathContextSourceSupport,DirContextSource,LdapContextSource,MutablePooledContextSource,MutablePoolingContextSource,PooledContextSource,PoolingContextSource,TransactionAwareContextSourceProxy
public interface BaseLdapPathSourceImplementations of this interface are capable of providing a base LDAP path. The base LDAP path is the root path to which all LDAP operations performed on a particular context are relative.- See Also:
ContextSource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description javax.naming.ldap.LdapNamegetBaseLdapName()Get the base LDAP path as aLdapName.DistinguishedNamegetBaseLdapPath()Deprecated.DistinguishedNameand associated classes and methods are deprecated as of 2.0.java.lang.StringgetBaseLdapPathAsString()Get the base LDAP path as a String.
-
-
-
Method Detail
-
getBaseLdapPath
DistinguishedName getBaseLdapPath()
Deprecated.DistinguishedNameand associated classes and methods are deprecated as of 2.0. UsegetBaseLdapName()instead.Get the base LDAP path as aDistinguishedName.- Returns:
- the base LDAP path as a
DistinguishedName. The path will be empty if no base path is specified.
-
getBaseLdapName
javax.naming.ldap.LdapName getBaseLdapName()
Get the base LDAP path as aLdapName.- Returns:
- the base LDAP path as a
LdapName. The path will be empty if no base path is specified. - Since:
- 2.0
-
getBaseLdapPathAsString
java.lang.String getBaseLdapPathAsString()
Get the base LDAP path as a String.- Returns:
- the base LDAP path as a An empty String will be returned if no base path is specified.
-
-