Package netscape.ldap
Interface LDAPSSLSocketFactoryExt
-
- All Superinterfaces:
LDAPSocketFactory
- All Known Implementing Classes:
LDAPSSLSocketFactory
,LDAPSSLSocketWrapFactory
public interface LDAPSSLSocketFactoryExt extends LDAPSocketFactory
Represents an SSL socket connection that you can use to connect to an LDAP server. This interface extends the base interface LDAPSocketFactory and provides SSL-specific methods.- Version:
- 1.0
- See Also:
LDAPSocketFactory
,LDAPConnection(netscape.ldap.LDAPSocketFactory)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getCipherSuites()
Returns the suite of ciphers used for SSL connections.boolean
isClientAuth()
Returnstrue
if client authentication is enabled.-
Methods inherited from interface netscape.ldap.LDAPSocketFactory
makeSocket
-
-
-
-
Method Detail
-
getCipherSuites
java.lang.Object getCipherSuites()
Returns the suite of ciphers used for SSL connections. These connections are made through sockets created by the LDAPSSLSocketFactory.- Returns:
- the suite of ciphers used.
-
isClientAuth
boolean isClientAuth()
Returnstrue
if client authentication is enabled.- See Also:
LDAPSSLSocketFactory.enableClientAuth()
-
-