Class LdapNetworkConnection
- java.lang.Object
-
- org.apache.mina.core.service.IoHandlerAdapter
-
- org.apache.directory.ldap.client.api.AbstractLdapConnection
-
- org.apache.directory.ldap.client.api.LdapNetworkConnection
-
- All Implemented Interfaces:
Closeable,AutoCloseable,LdapAsyncConnection,LdapConnection,IoHandler
public class LdapNetworkConnection extends AbstractLdapConnection implements LdapAsyncConnection
This class is the base for every operations sent or received to and from a LDAP server. A connection instance is necessary to send requests to the server. The connection is valid until either the client closes it, the server closes it or the client does an unbind.- Author:
- Apache Directory Project
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static StringNO_RESPONSE_ERROR(package private) static StringTIME_OUT_ERROR-
Fields inherited from class org.apache.directory.ldap.client.api.AbstractLdapConnection
codec, messageId, schemaManager
-
-
Constructor Summary
Constructors Constructor Description LdapNetworkConnection()Create a new instance of a LdapConnection on localhost, port 389.LdapNetworkConnection(boolean useSsl)Create a new instance of a LdapConnection on localhost, port 389 if the SSL flag is off, or 636 otherwise.LdapNetworkConnection(boolean useSsl, LdapApiService ldapApiService)Creates a new LdapNetworkConnection instanceLdapNetworkConnection(String server)Create a new instance of a LdapConnection on a given server, using the default port (389).LdapNetworkConnection(String server, boolean useSsl)Create a new instance of a LdapConnection on a given server, using the default port (389) if the SSL flag is off, or 636 otherwise.LdapNetworkConnection(String server, boolean useSsl, LdapApiService ldapApiService)Creates a new LdapNetworkConnection instanceLdapNetworkConnection(String server, int port)Create a new instance of a LdapConnection on a given server and a given port.LdapNetworkConnection(String server, int port, boolean useSsl)Create a new instance of a LdapConnection on a given server, and a give port.LdapNetworkConnection(String server, int port, boolean useSsl, LdapApiService ldapApiService)Create a new instance of a LdapConnection on a given server and a given port.LdapNetworkConnection(String server, int port, TrustManager... trustManagers)Create a new instance of a LdapConnection on a given server, and a give port.LdapNetworkConnection(String server, int port, LdapApiService ldapApiService)Create a new instance of a LdapConnection on a given server and a given port.LdapNetworkConnection(String server, LdapApiService ldapApiService)Creates a new LdapNetworkConnection instanceLdapNetworkConnection(LdapConnectionConfig config)Creates a new instance of LdapConnection with the given connection configuration.LdapNetworkConnection(LdapConnectionConfig config, LdapApiService ldapApiService)Creates a new LdapNetworkConnection instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidabandon(int messageId)Abandons a request submitted to the server for performing a particular operation.voidabandon(AbandonRequest abandonRequest)An abandon request essentially with the request message ID of the operation to be canceled and/or potentially some controls and timeout (the controls and timeout are not mandatory).voidadd(Entry entry)Add an entry to the server.AddResponseadd(AddRequest addRequest)Add an entry present in theAddRequestto the server.AddFutureaddAsync(Entry entry)Add an entry to the server asynchronously.AddFutureaddAsync(AddRequest addRequest)Add an entry present in the AddRequest to the server.voidaddConnectionClosedEventListener(ConnectionClosedEventListener ccListener)Adds the connection closed event listener.voidaddSchema(File schemaFile)parses the given schema file present in OpenLDAP schema format and adds all the SchemaObjects present in it to the SchemaManagervoidaddSchema(String schemaFileName)voidanonymousBind()Anonymous bind on a server.BindFutureanonymousBindAsync()Anonymous asynchronous Bind on a server.voidbind()Bind on a server, using theLdapConnectionConfiginformation of this connection.BindResponsebind(BindRequest bindRequest)Bind to the server using a bind request object.BindResponsebind(SaslCramMd5Request request)Bind to the server using a CramMd5Request object.BindResponsebind(SaslDigestMd5Request request)Bind to the server using a DigestMd5Request object.BindResponsebind(SaslExternalRequest request)Bind to the server using a SaslExternalRequest object.BindResponsebind(SaslGssApiRequest request)Bind to the server using a GssApiRequest object.BindResponsebind(SaslRequest request)Bind to the server using a SaslRequest object.BindFuturebindAsync()Asynchronous Bind on a server, using the LdapConnectionConfig informations.BindFuturebindAsync(String name)Asynchronous unauthenticated authentication bindBindFuturebindAsync(String name, String credentials)Simple asynchronous Bind on a server.BindFuturebindAsync(BindRequest bindRequest)Do an asynchronous bind, based on a BindRequest.BindFuturebindAsync(Dn name)Asynchronous unauthenticated authentication Bind on a server.BindFuturebindAsync(Dn name, String credentials)Simple asynchronous Bind on a server.BindFuturebindAsync(SaslGssApiRequest request)Do an asynchronous bind, based on a GssApiRequest.BindFuturebindAsync(SaslRequest request)Do an asynchronous bind, based on a SaslPlainRequest.BindFuturebindSasl(SaslRequest saslRequest)Process the SASL Bind.BindResponsebindSaslCramMd5(String userName, String credentials)Bind to the server using the SASL CRAM-MD5 mechanism.BindResponsebindSaslDigestMd5(String userName, String credentials)Bind to the server using the SASL DIGEST-MD5 mechanism.BindResponsebindSaslPlain(String authcid, String credentials)SASL PLAIN Bind on a server.BindResponsebindSaslPlain(String authzid, String authcid, String credentials)SASL PLAIN Bind on a server.voidclose()Disconnect from the remote LDAP server.booleancompare(String dn, String attributeName, byte[] value)Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.booleancompare(String dn, String attributeName, String value)Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.booleancompare(String dn, String attributeName, Value value)Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.CompareResponsecompare(CompareRequest compareRequest)Compares an entry's attribute's value with that of the given value.booleancompare(Dn dn, String attributeName, byte[] value)Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.booleancompare(Dn dn, String attributeName, String value)Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.booleancompare(Dn dn, String attributeName, Value value)Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.CompareFuturecompareAsync(CompareRequest compareRequest)Asynchronously compares an entry's attribute's value with that of the given valuebooleanconnect()Connect to the remote LDAP server.voiddelete(String dn)Deletes the entry with the given distinguished name.DeleteResponsedelete(DeleteRequest deleteRequest)Performs a delete operation based on the delete request object.voiddelete(Dn dn)Deletes the entry with the given distinguished name.DeleteFuturedeleteAsync(DeleteRequest deleteRequest)Performs an asynchronous delete operation based on the delete request object.voiddeleteTree(String dn)deletes the entry with the given Dn, and all its childrenvoiddeleteTree(Dn dn)deletes the entry with the given Dn, and all its childrenbooleandoesFutureExistFor(int messageId)Checks if there is a ResponseFuture associated with the given message ID.voidevent(IoSession session, FilterEvent event)Invoked when a filter event is fired.ThrowableexceptionCaught()tell if an exception was caught while processing the request or a response.voidexceptionCaught(IoSession session, Throwable cause)Handle the exception we got.booleanexists(String dn)Tells if an entry exists in the server.booleanexists(Dn dn)Tells if an Entry exists in the server.ExtendedResponseextended(String oid)Sends a extended operation request to the server with the given OID and no value.ExtendedResponseextended(String oid, byte[] value)Sends a extended operation request to the server with the given OID and value.ExtendedResponseextended(Oid oid)Sends a extended operation request to the server with the given OID and no value.ExtendedResponseextended(Oid oid, byte[] value)Sends a extended operation request to the server with the given OID and value.ExtendedResponseextended(ExtendedRequest extendedRequest)Performs an extended operation based on the extended request object.ExtendedFutureextendedAsync(ExtendedRequest extendedRequest)Asynchronously requests the server to perform an extended operation based on the given request.BinaryAttributeDetectorgetBinaryAttributeDetector()LdapApiServicegetCodecService()Gets the LDAP CODEC service responsible for encoding and decoding messages.LdapConnectionConfiggetConfig()gives the configuration information of the connectionEntrygetRootDse()Get back the RooDSE from the connected server.EntrygetRootDse(String... attributes)Get back the RooDSE from the connected server.SchemaManagergetSchemaManager()SocketSessionConfiggetSocketSessionConfig()SSLSessiongetSslSession()Gets theSSLSessionassociated with the connection.List<String>getSupportedControls()Get the Controls supported by server.longgetTimeout(long configuredTimeout, int searchTimeLimitInSeconds)Get the largest timeout from the search time limit and the connection timeout.voidinputClosed(IoSession session)Handle the closure of an half-duplex TCP channelbooleanisAuthenticated()Check if the connection is authenticated.booleanisConnected()Check if the connection is establishedbooleanisControlSupported(String controlOID)Checks if a control with the given OID is supported.booleanisRequestCompleted(int messageId)Checks if a request has been completed, or not.booleanisSecured()Tells if the connection is using a secured channelvoidloadSchema()Loads all the default schemas that are bundled with the API.
Note: This method enables all schemas prior to loading.voidloadSchema(SchemaLoader loader)loads schema using the specified schema loadervoidloadSchemaRelaxed()Loads all the default schemas that are bundled with the API, in a relaxed mode.
Note: This method enables all schemas prior to loading.
The relaxed mode will allow inconsistencies in the schema.Entrylookup(String dn)Searches for an entry having the given distinguished name.Entrylookup(String dn, String... attributes)Searches for an entry having the given distinguished name.Entrylookup(String dn, Control[] controls, String... attributes)Searches for an entry having the given distinguished name.Entrylookup(Dn dn)Searches for an entry having the given distinguished name..Entrylookup(Dn dn, String... attributes)Searches for an entry having the given distinguished name.Entrylookup(Dn dn, Control[] controls, String... attributes)Searches for an entry having the given distinguished name.voidmessageReceived(IoSession session, Object message)Handle the incoming LDAP messages.voidmodify(String dn, Modification... modifications)Applies all the modifications to the entry specified by its distinguished name.voidmodify(Entry entry, ModificationOperation modOp)Modifies all the attributes present in the entry by applying the same operation.ModifyResponsemodify(ModifyRequest modRequest)Performs an modify operation based on the modifications present in the modify request.voidmodify(Dn dn, Modification... modifications)Applies all the modifications to the entry specified by its distinguished name.ModifyFuturemodifyAsync(ModifyRequest modRequest)Performs an asynchronous modify operation based on the modifications present in the ModifyRequest.ModifyDnResponsemodifyDn(ModifyDnRequest modDnRequest)Performs the modifyDn operation based on the given request object.ModifyDnFuturemodifyDnAsync(ModifyDnRequest modDnRequest)Performs the modifyDn operation based on the given ModifyDnRequest.voidmove(String entryDn, String newSuperiorDn)Moves the given entry distinguished name under the new superior distinguished name.voidmove(Dn entryDn, Dn newSuperiorDn)Moves the given entry distinguished name under the new superior distinguished name.voidmoveAndRename(String entryDn, String newDn)Moves and renames the given entry distinguished name.voidmoveAndRename(String entryDn, String newDn, boolean deleteOldRdn)Moves and renames the given entryDn.voidmoveAndRename(Dn entryDn, Dn newDn)Moves and renames the given entryDn.voidmoveAndRename(Dn entryDn, Dn newDn, boolean deleteOldRdn)Moves and renames the given entryDn.voidrename(String entryDn, String newRdn)Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name.voidrename(String entryDn, String newRdn, boolean deleteOldRdn)Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name if deleteOldRdn is set to true.voidrename(Dn entryDn, Rdn newRdn)Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name.voidrename(Dn entryDn, Rdn newRdn, boolean deleteOldRdn)Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name if deleteOldRdn is set to true.EntryCursorsearch(String baseDn, String filter, SearchScope scope, String... attributes)Do a search, on the base object, using the given filter and scope.SearchCursorsearch(SearchRequest searchRequest)Performs search using a search request object.SearchCursorsearch(SearchRequest searchRequest, long localSearchTimeout)Search operation with explicit specification of operation timeout.EntryCursorsearch(Dn baseDn, String filter, SearchScope scope, String... attributes)Do a search, on the base object, using the given filter and scope.SearchFuturesearchAsync(String baseDn, String filter, SearchScope scope, String... attributes)Do an asynchronous search, on the base object, using the given filter.SearchFuturesearchAsync(SearchRequest searchRequest)Do a search, on the base object, using the given filter.SearchFuturesearchAsync(Dn baseDn, String filter, SearchScope scope, String... attributes)Do an asynchronous search, on the base object, using the given filter.voidsessionClosed(IoSession session)Invoked when a connection is closed.voidsessionCreated(IoSession session)This method is called when a new session is created.voidsetBinaryAttributeDetector(BinaryAttributeDetector binaryAttributeDetector)Sets the object responsible for the detection of binary attributes.voidsetConnector(IoConnector connector)Set the connector to use.voidsetSchemaManager(SchemaManager schemaManager)sets a SchemaManager to be used by this connectionvoidsetSocketSessionConfig(SocketSessionConfig socketSessionConfig)voidsetTimeOut(long timeout)Set the timeout for the responses.voidstartTls()Sends the StartTLS extended request to server and adds a security layer upon receiving a response with successful result.ConnectFuturetryConnect()Process the connect.voidunBind()UnBind from a server.-
Methods inherited from class org.apache.directory.ldap.client.api.AbstractLdapConnection
bind, bind, bind, bind, createBindRequest
-
Methods inherited from class org.apache.mina.core.service.IoHandlerAdapter
messageSent, sessionIdle, sessionOpened
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.directory.ldap.client.api.LdapConnection
bind, bind, bind, bind
-
-
-
-
Constructor Detail
-
LdapNetworkConnection
public LdapNetworkConnection()
Create a new instance of a LdapConnection on localhost, port 389.
-
LdapNetworkConnection
public LdapNetworkConnection(LdapConnectionConfig config)
Creates a new instance of LdapConnection with the given connection configuration.- Parameters:
config- the configuration of the LdapConnection
-
LdapNetworkConnection
public LdapNetworkConnection(LdapConnectionConfig config, LdapApiService ldapApiService)
Creates a new LdapNetworkConnection instance- Parameters:
config- The configuration to useldapApiService- The LDAP API Service to use
-
LdapNetworkConnection
public LdapNetworkConnection(boolean useSsl)
Create a new instance of a LdapConnection on localhost, port 389 if the SSL flag is off, or 636 otherwise.- Parameters:
useSsl- A flag to tell if it's a SSL connection or not.
-
LdapNetworkConnection
public LdapNetworkConnection(boolean useSsl, LdapApiService ldapApiService)Creates a new LdapNetworkConnection instance- Parameters:
useSsl- If we are going to create a secure connection or notldapApiService- The LDAP API Service to use
-
LdapNetworkConnection
public LdapNetworkConnection(String server)
Create a new instance of a LdapConnection on a given server, using the default port (389).- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.
-
LdapNetworkConnection
public LdapNetworkConnection(String server, LdapApiService ldapApiService)
Creates a new LdapNetworkConnection instance- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.ldapApiService- The LDAP API Service to use
-
LdapNetworkConnection
public LdapNetworkConnection(String server, boolean useSsl)
Create a new instance of a LdapConnection on a given server, using the default port (389) if the SSL flag is off, or 636 otherwise.- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.useSsl- A flag to tell if it's a SSL connection or not.
-
LdapNetworkConnection
public LdapNetworkConnection(String server, boolean useSsl, LdapApiService ldapApiService)
Creates a new LdapNetworkConnection instance- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.useSsl- A flag to tell if it's a SSL connection or not.ldapApiService- The LDAP API Service to use
-
LdapNetworkConnection
public LdapNetworkConnection(String server, int port)
Create a new instance of a LdapConnection on a given server and a given port. We don't use ssl.- Parameters:
server- The server we want to be connected toport- The port the server is listening to
-
LdapNetworkConnection
public LdapNetworkConnection(String server, int port, LdapApiService ldapApiService)
Create a new instance of a LdapConnection on a given server and a given port. We don't use ssl.- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.port- The port the server is listening onldapApiService- The LDAP API Service to use
-
LdapNetworkConnection
public LdapNetworkConnection(String server, int port, boolean useSsl)
Create a new instance of a LdapConnection on a given server, and a give port. We set the SSL flag accordingly to the last parameter.- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.port- The port the server is listening touseSsl- A flag to tell if it's a SSL connection or not.
-
LdapNetworkConnection
public LdapNetworkConnection(String server, int port, TrustManager... trustManagers)
Create a new instance of a LdapConnection on a given server, and a give port. This SSL connection will use the provided TrustManagers- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.port- The port the server is listening totrustManagers- The TrustManager to use
-
LdapNetworkConnection
public LdapNetworkConnection(String server, int port, boolean useSsl, LdapApiService ldapApiService)
Create a new instance of a LdapConnection on a given server and a given port. We don't use ssl.- Parameters:
server- The server we want to be connected to. If null or empty, we will default to LocalHost.port- The port the server is listening onuseSsl- A flag to tell if it's a SSL connection or not.ldapApiService- The LDAP API Service to use
-
-
Method Detail
-
isConnected
public boolean isConnected()
Check if the connection is established- Specified by:
isConnectedin interfaceLdapConnection- Returns:
trueif the connection is established
-
isAuthenticated
public boolean isAuthenticated()
Check if the connection is authenticated.- Specified by:
isAuthenticatedin interfaceLdapConnection- Returns:
trueif the connection is authenticated
-
isSecured
public boolean isSecured()
Tells if the connection is using a secured channel- Returns:
- true if the session is using a secured channel
-
exceptionCaught
public Throwable exceptionCaught()
tell if an exception was caught while processing the request or a response.- Specified by:
exceptionCaughtin interfaceLdapConnection- Returns:
- The exception if there was one thrown while processing a request or a response
-
getTimeout
public long getTimeout(long configuredTimeout, int searchTimeLimitInSeconds)Get the largest timeout from the search time limit and the connection timeout.- Parameters:
configuredTimeout- Timeout configured in LdapNetworkConnectionsearchTimeLimitInSeconds- Search timeout- Returns:
- The largest timeout
-
tryConnect
public ConnectFuture tryConnect() throws LdapException
Process the connect.- Returns:
- A Future that can be used to check the status of the connection
- Throws:
LdapException- If we weren't able to connect
-
connect
public boolean connect() throws LdapExceptionConnect to the remote LDAP server.- Specified by:
connectin interfaceLdapConnection- Returns:
trueif the connection is established, false otherwise- Throws:
LdapException- if some error occurred
-
close
public void close()
Disconnect from the remote LDAP server.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein interfaceLdapConnection
-
add
public void add(Entry entry) throws LdapException
Add an entry to the server.- Specified by:
addin interfaceLdapConnection- Parameters:
entry- The entry to add- Throws:
LdapException- if some error occurred
-
addAsync
public AddFuture addAsync(Entry entry) throws LdapException
Add an entry to the server asynchronously. This is a non blocking add : the user has to get for the response from the returned Future.- Specified by:
addAsyncin interfaceLdapAsyncConnection- Parameters:
entry- The entry to add- Returns:
- the add operation's future
- Throws:
LdapException- if some error occurred
-
add
public AddResponse add(AddRequest addRequest) throws LdapException
Add an entry present in theAddRequestto the server.- Specified by:
addin interfaceLdapConnection- Parameters:
addRequest- the request object containing an entry and controls (if any)- Returns:
- the add operation's response
- Throws:
LdapException- if some error occurred
-
addAsync
public AddFuture addAsync(AddRequest addRequest) throws LdapException
Add an entry present in the AddRequest to the server.- Specified by:
addAsyncin interfaceLdapAsyncConnection- Parameters:
addRequest- the request object containing an entry and controls(if any)- Returns:
- the add operation's future
- Throws:
LdapException- if some error occurred
-
abandon
public void abandon(int messageId)
Abandons a request submitted to the server for performing a particular operation. The abandonRequest is always non-blocking, because no response is expected- Specified by:
abandonin interfaceLdapConnection- Parameters:
messageId- the ID of the request message sent to the server
-
abandon
public void abandon(AbandonRequest abandonRequest)
An abandon request essentially with the request message ID of the operation to be canceled and/or potentially some controls and timeout (the controls and timeout are not mandatory). The abandonRequest is always non-blocking, because no response is expected.- Specified by:
abandonin interfaceLdapConnection- Parameters:
abandonRequest- the abandon operation's request
-
bind
public void bind() throws LdapExceptionBind on a server, using theLdapConnectionConfiginformation of this connection.- Specified by:
bindin interfaceLdapConnection- Throws:
LdapException- if some error occurred
-
anonymousBind
public void anonymousBind() throws LdapExceptionAnonymous bind on a server.- Specified by:
anonymousBindin interfaceLdapConnection- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync() throws LdapException
Asynchronous Bind on a server, using the LdapConnectionConfig informations.- Specified by:
bindAsyncin interfaceLdapAsyncConnection- Returns:
- the bind operation's future
- Throws:
LdapException- if some error occurred
-
anonymousBindAsync
public BindFuture anonymousBindAsync() throws LdapException
Anonymous asynchronous Bind on a server.- Specified by:
anonymousBindAsyncin interfaceLdapAsyncConnection- Returns:
- the bind operation's future
- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(String name) throws LdapException
Asynchronous unauthenticated authentication bind- Parameters:
name- The name we use to authenticate the user. It must be a valid Dn- Returns:
- The BindResponse LdapResponse
- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(String name, String credentials) throws LdapException
Simple asynchronous Bind on a server.- Specified by:
bindAsyncin interfaceLdapAsyncConnection- Parameters:
name- The name we use to authenticate the user, it must be a valid Dncredentials- The password, it can't be null- Returns:
- the bind operation's future
- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(Dn name) throws LdapException
Asynchronous unauthenticated authentication Bind on a server.- Parameters:
name- The name we use to authenticate the user. It must be a valid Dn- Returns:
- The BindResponse LdapResponse
- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(Dn name, String credentials) throws LdapException
Simple asynchronous Bind on a server.- Specified by:
bindAsyncin interfaceLdapAsyncConnection- Parameters:
name- The name we use to authenticate the user, it must be a valid Dncredentials- The password, it can't be null- Returns:
- the bind operation's future
- Throws:
LdapException- if some error occurred
-
bind
public BindResponse bind(BindRequest bindRequest) throws LdapException
Bind to the server using a bind request object.- Specified by:
bindin interfaceLdapConnection- Parameters:
bindRequest- The bind request object containing all the needed parameters- Returns:
- A
BindResponsecontaining the result - Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(BindRequest bindRequest) throws LdapException
Do an asynchronous bind, based on a BindRequest.- Specified by:
bindAsyncin interfaceLdapAsyncConnection- Parameters:
bindRequest- The BindRequest to send- Returns:
- the bind operation's future
- Throws:
LdapException- if some error occurred
-
bindSaslPlain
public BindResponse bindSaslPlain(String authcid, String credentials) throws LdapException
SASL PLAIN Bind on a server.- Parameters:
authcid- The Authentication identitycredentials- The password. It can't be null- Returns:
- The BindResponse LdapResponse
- Throws:
LdapException- if some error occurred
-
bindSaslPlain
public BindResponse bindSaslPlain(String authzid, String authcid, String credentials) throws LdapException
SASL PLAIN Bind on a server.- Parameters:
authzid- The Authorization identityauthcid- The Authentication identitycredentials- The password. It can't be null- Returns:
- The BindResponse LdapResponse
- Throws:
LdapException- if some error occurred
-
bind
public BindResponse bind(SaslRequest request) throws LdapException
Bind to the server using a SaslRequest object.- Specified by:
bindin interfaceLdapConnection- Parameters:
request- The SaslRequest POJO containing all the needed parameters- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bindSaslCramMd5
public BindResponse bindSaslCramMd5(String userName, String credentials) throws LdapException
Bind to the server using the SASL CRAM-MD5 mechanism.- Parameters:
userName- The user namecredentials- The user credentials- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bindSaslDigestMd5
public BindResponse bindSaslDigestMd5(String userName, String credentials) throws LdapException
Bind to the server using the SASL DIGEST-MD5 mechanism.- Parameters:
userName- The user namecredentials- The user credentials- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bind
public BindResponse bind(SaslCramMd5Request request) throws LdapException
Bind to the server using a CramMd5Request object.- Parameters:
request- The CramMd5Request POJO containing all the needed parameters- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(SaslRequest request) throws LdapException
Do an asynchronous bind, based on a SaslPlainRequest.- Parameters:
request- The SaslPlainRequest POJO containing all the needed parameters- Returns:
- The bind operation's future
- Throws:
LdapException- if some error occurred
-
bind
public BindResponse bind(SaslDigestMd5Request request) throws LdapException
Bind to the server using a DigestMd5Request object.- Parameters:
request- The DigestMd5Request POJO containing all the needed parameters- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bind
public BindResponse bind(SaslGssApiRequest request) throws LdapException
Bind to the server using a GssApiRequest object.- Parameters:
request- The GssApiRequest POJO containing all the needed parameters- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bind
public BindResponse bind(SaslExternalRequest request) throws LdapException
Bind to the server using a SaslExternalRequest object.- Parameters:
request- The SaslExternalRequest POJO containing all the needed parameters- Returns:
- A LdapResponse containing the result
- Throws:
LdapException- if some error occurred
-
bindAsync
public BindFuture bindAsync(SaslGssApiRequest request) throws LdapException
Do an asynchronous bind, based on a GssApiRequest.- Parameters:
request- The GssApiRequest POJO containing all the needed parameters- Returns:
- The bind operation's future
- Throws:
LdapException- if some error occurred
-
search
public EntryCursor search(Dn baseDn, String filter, SearchScope scope, String... attributes) throws LdapException
Do a search, on the base object, using the given filter and scope. The SearchRequest parameters default to- DerefAlias : ALWAYS
- SizeLimit : none
- TimeLimit : none
- TypesOnly : false
- Specified by:
searchin interfaceLdapConnection- Parameters:
baseDn- The base for the search. It must be a valid distinguished name and can't be emtpyfilter- The filter to use for this search. It can't be emptyscope- The search scope : OBJECT, ONELEVEL or SUBTREEattributes- The attributes to use for this search- Returns:
- An
EntryCursoron the result. - Throws:
LdapException- if some error occurred
-
search
public EntryCursor search(String baseDn, String filter, SearchScope scope, String... attributes) throws LdapException
Do a search, on the base object, using the given filter and scope. The SearchRequest parameters default to- DerefAlias : ALWAYS
- SizeLimit : none
- TimeLimit : none
- TypesOnly : false
- Specified by:
searchin interfaceLdapConnection- Parameters:
baseDn- The base for the search. It must be a valid distinguished name, and can't be emtpyfilter- The filter to use for this search. It can't be emptyscope- The search scope : OBJECT, ONELEVEL or SUBTREEattributes- The attributes to use for this search- Returns:
- An
EntryCursoron the result. - Throws:
LdapException- if some error occurred
-
searchAsync
public SearchFuture searchAsync(Dn baseDn, String filter, SearchScope scope, String... attributes) throws LdapException
Do an asynchronous search, on the base object, using the given filter. The SearchRequest parameters default to :Scope : ONE DerefAlias : ALWAYS SizeLimit : none TimeLimit : none TypesOnly : false Attributes : all the user's attributes. This method is blocking.
- Specified by:
searchAsyncin interfaceLdapAsyncConnection- Parameters:
baseDn- The base for the search, it must be a valid Dn, and can't be emptyfilter- The filter to use for this search, it can't be emptyscope- The search scope : OBJECT, ONELEVEL or SUBTREEattributes- The attributes for this search- Returns:
- the search operation's future
- Throws:
LdapException- if some error occurred
-
searchAsync
public SearchFuture searchAsync(String baseDn, String filter, SearchScope scope, String... attributes) throws LdapException
Do an asynchronous search, on the base object, using the given filter. The SearchRequest parameters default to :Scope : ONE DerefAlias : ALWAYS SizeLimit : none TimeLimit : none TypesOnly : false Attributes : all the user's attributes. This method is blocking.
- Specified by:
searchAsyncin interfaceLdapAsyncConnection- Parameters:
baseDn- The base for the search, it must be a valid Dn, and can't be emtpyfilter- The filter to use for this search, it can't be emptyscope- The search scope : OBJECT, ONELEVEL or SUBTREEattributes- The attributes for this search- Returns:
- the search operation's future
- Throws:
LdapException- if some error occurred
-
searchAsync
public SearchFuture searchAsync(SearchRequest searchRequest) throws LdapException
Do a search, on the base object, using the given filter. The SearchRequest parameters default to :Scope : ONE DerefAlias : ALWAYS SizeLimit : none TimeLimit : none TypesOnly : false Attributes : all the user's attributes. This method is blocking.
- Specified by:
searchAsyncin interfaceLdapAsyncConnection- Parameters:
searchRequest- The search request to send to the server- Returns:
- the search operation's future
- Throws:
LdapException- if some error occurred
-
search
public SearchCursor search(SearchRequest searchRequest) throws LdapException
Performs search using a search request object.- Specified by:
searchin interfaceLdapConnection- Parameters:
searchRequest- The search request object containing all the needed information- Returns:
- a search cursor on the result.
- Throws:
LdapException- if some error occurred
-
search
public SearchCursor search(SearchRequest searchRequest, long localSearchTimeout) throws LdapException
Search operation with explicit specification of operation timeout. This is very useful for special-purpose search operations, such as connection liveliness test. In that case we want to make a very quick search with a very short timeout. We do not want to use the default search timeout in this case, as that is likely to be in order of seconds. That is too long for quick connection check. searchRequest.timeLimit is not going to work either, as it has very rough granularity (seconds).- Throws:
LdapException
-
unBind
public void unBind() throws LdapExceptionUnBind from a server. This is a request which expects no response.- Specified by:
unBindin interfaceLdapConnection- Throws:
LdapException- if some error occurred
-
setConnector
public void setConnector(IoConnector connector)
Set the connector to use.- Parameters:
connector- The connector to use
-
setTimeOut
public void setTimeOut(long timeout)
Set the timeout for the responses. We won't wait longer than this value.- Specified by:
setTimeOutin interfaceLdapConnection- Parameters:
timeout- The timeout, in milliseconds
-
exceptionCaught
public void exceptionCaught(IoSession session, Throwable cause) throws Exception
Handle the exception we got.- Specified by:
exceptionCaughtin interfaceIoHandler- Overrides:
exceptionCaughtin classIoHandlerAdapter- Parameters:
session- The session we got the exception oncause- The exception cause- Throws:
Exception- If we have had another exception
-
messageReceived
public void messageReceived(IoSession session, Object message) throws Exception
Handle the incoming LDAP messages. This is where we feed the cursor for search requests, or call the listener.- Specified by:
messageReceivedin interfaceIoHandler- Overrides:
messageReceivedin classIoHandlerAdapter- Parameters:
session- The session that received a messagemessage- The received message- Throws:
Exception- If there is some error while processing the message
-
modify
public void modify(Entry entry, ModificationOperation modOp) throws LdapException
Modifies all the attributes present in the entry by applying the same operation.- Specified by:
modifyin interfaceLdapConnection- Parameters:
entry- the entry with the attributes to be modifiedmodOp- the operation to be applied on all the attributes of the above entry- Throws:
LdapException- in case of modify operation failure or timeout happens
-
modify
public void modify(Dn dn, Modification... modifications) throws LdapException
Applies all the modifications to the entry specified by its distinguished name.- Specified by:
modifyin interfaceLdapConnection- Parameters:
dn- The entry's distinguished namemodifications- The list of modifications to be applied- Throws:
LdapException- in case of modify operation failure or timeout happens
-
modify
public void modify(String dn, Modification... modifications) throws LdapException
Applies all the modifications to the entry specified by its distinguished name.- Specified by:
modifyin interfaceLdapConnection- Parameters:
dn- The entry's distinguished name, it must be a valid distinguished name.modifications- The list of modifications to be applied- Throws:
LdapException- in case of modify operation failure or timeout happens
-
modify
public ModifyResponse modify(ModifyRequest modRequest) throws LdapException
Performs an modify operation based on the modifications present in the modify request.- Specified by:
modifyin interfaceLdapConnection- Parameters:
modRequest- the modify request object- Returns:
- the modify operation's response
- Throws:
LdapException- in case of modify operation failure or timeout happens
-
modifyAsync
public ModifyFuture modifyAsync(ModifyRequest modRequest) throws LdapException
Performs an asynchronous modify operation based on the modifications present in the ModifyRequest.- Specified by:
modifyAsyncin interfaceLdapAsyncConnection- Parameters:
modRequest- the request for modify operation- Returns:
- the modify operation's future
- Throws:
LdapException- in case of modify operation failure or timeout happens
-
rename
public void rename(String entryDn, String newRdn) throws LdapException
Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name.- Specified by:
renamein interfaceLdapConnection- Parameters:
entryDn- the target distinguished name.newRdn- new relative distinguished name for the target distinguished name.- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.rename(String, String, boolean)
-
rename
public void rename(Dn entryDn, Rdn newRdn) throws LdapException
Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name.- Specified by:
renamein interfaceLdapConnection- Parameters:
entryDn- the target distinguished name.newRdn- new relative distinguished name for the target distinguished name.- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.rename(Dn, Rdn, boolean)
-
rename
public void rename(String entryDn, String newRdn, boolean deleteOldRdn) throws LdapException
Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name if deleteOldRdn is set to true.- Specified by:
renamein interfaceLdapConnection- Parameters:
entryDn- the target distinguished name.newRdn- new relative distinguished name for the target distinguished name.deleteOldRdn- flag to indicate whether to delete the old relative distinguished name- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.rename(Dn, Rdn, boolean)
-
rename
public void rename(Dn entryDn, Rdn newRdn, boolean deleteOldRdn) throws LdapException
Renames the given entryDn with new relative distinguished name and deletes the old relative distinguished name if deleteOldRdn is set to true.- Specified by:
renamein interfaceLdapConnection- Parameters:
entryDn- the target distinguished name.newRdn- new relative distinguished name for the target distinguished name.deleteOldRdn- flag to indicate whether to delete the old relative distinguished name- Throws:
LdapException- if some error occurred
-
move
public void move(String entryDn, String newSuperiorDn) throws LdapException
Moves the given entry distinguished name under the new superior distinguished name.- Specified by:
movein interfaceLdapConnection- Parameters:
entryDn- the distinguished name of the target entrynewSuperiorDn- distinguished name of the new parent/superior- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.move(Dn, Dn)
-
move
public void move(Dn entryDn, Dn newSuperiorDn) throws LdapException
Moves the given entry distinguished name under the new superior distinguished name.- Specified by:
movein interfaceLdapConnection- Parameters:
entryDn- the distinguished name of the target entrynewSuperiorDn- distinguished name of the new parent/superior- Throws:
LdapException- if some error occurred
-
moveAndRename
public void moveAndRename(Dn entryDn, Dn newDn) throws LdapException
Moves and renames the given entryDn. The old relative distinguished name will be deleted.- Specified by:
moveAndRenamein interfaceLdapConnection- Parameters:
entryDn- The original entry distinguished name.newDn- The new entry distinguished name.- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.moveAndRename(Dn, Dn, boolean)
-
moveAndRename
public void moveAndRename(String entryDn, String newDn) throws LdapException
Moves and renames the given entry distinguished name. The old relative distinguished name will be deleted- Specified by:
moveAndRenamein interfaceLdapConnection- Parameters:
entryDn- The original entry distinguished name.newDn- The new entry distinguished name.- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.moveAndRename(Dn, Dn, boolean)
-
moveAndRename
public void moveAndRename(Dn entryDn, Dn newDn, boolean deleteOldRdn) throws LdapException
Moves and renames the given entryDn. The old relative distinguished name will be deleted if requested.- Specified by:
moveAndRenamein interfaceLdapConnection- Parameters:
entryDn- The original entry distinguished name.newDn- The new entry distinguished name.deleteOldRdn- Tells if the old relative distinguished name must be removed- Throws:
LdapException- if some error occurred
-
moveAndRename
public void moveAndRename(String entryDn, String newDn, boolean deleteOldRdn) throws LdapException
Moves and renames the given entryDn. The old relative distinguished name will be deleted if requested.- Specified by:
moveAndRenamein interfaceLdapConnection- Parameters:
entryDn- The original entry distinguished name.newDn- The new entry distinguished name.deleteOldRdn- Tells if the old relative distinguished name must be removed- Throws:
LdapException- if some error occurred
-
modifyDn
public ModifyDnResponse modifyDn(ModifyDnRequest modDnRequest) throws LdapException
Performs the modifyDn operation based on the given request object.- Specified by:
modifyDnin interfaceLdapConnection- Parameters:
modDnRequest- the request object- Returns:
- modifyDn operation's response
- Throws:
LdapException- if some error occurred
-
modifyDnAsync
public ModifyDnFuture modifyDnAsync(ModifyDnRequest modDnRequest) throws LdapException
Performs the modifyDn operation based on the given ModifyDnRequest.- Specified by:
modifyDnAsyncin interfaceLdapAsyncConnection- Parameters:
modDnRequest- the request- Returns:
- modifyDn operation's future
- Throws:
LdapException- if some error occurred
-
delete
public void delete(String dn) throws LdapException
Deletes the entry with the given distinguished name.- Specified by:
deletein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished name, it must be a valid distinguished name.- Throws:
LdapException- If the distinguished name is not valid or if the deletion failed
-
delete
public void delete(Dn dn) throws LdapException
Deletes the entry with the given distinguished name.- Specified by:
deletein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished name- Throws:
LdapException- If the distinguished name is not valid or if the deletion failed
-
deleteTree
public void deleteTree(Dn dn) throws LdapException
deletes the entry with the given Dn, and all its children- Parameters:
dn- the target entry's Dn- Throws:
LdapException- If the Dn is not valid or if the deletion failed
-
deleteTree
public void deleteTree(String dn) throws LdapException
deletes the entry with the given Dn, and all its children- Parameters:
dn- the target entry's Dn as a String- Throws:
LdapException- If the Dn is not valid or if the deletion failed
-
delete
public DeleteResponse delete(DeleteRequest deleteRequest) throws LdapException
Performs a delete operation based on the delete request object.- Specified by:
deletein interfaceLdapConnection- Parameters:
deleteRequest- the delete operation's request- Returns:
- delete operation's response
- Throws:
LdapException- If the distinguished name is not valid or if the deletion failed
-
deleteAsync
public DeleteFuture deleteAsync(DeleteRequest deleteRequest) throws LdapException
Performs an asynchronous delete operation based on the delete request object.- Specified by:
deleteAsyncin interfaceLdapAsyncConnection- Parameters:
deleteRequest- the delete operation's request- Returns:
- delete operation's future
- Throws:
LdapException- If the Dn is not valid or if the deletion failed
-
compare
public boolean compare(String dn, String attributeName, String value) throws LdapException
Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.- Specified by:
comparein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished name, it must be a valid distinguished name.attributeName- the attribute's namevalue- a String value with which the target entry's attribute value to be compared with- Returns:
trueif the value matches,falseotherwise- Throws:
LdapException- if some error occurred
-
compare
public boolean compare(String dn, String attributeName, byte[] value) throws LdapException
Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.- Specified by:
comparein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished name, it must be a valid distinguished name.attributeName- the attribute's namevalue- a byte[] value with which the target entry's attribute value to be compared with- Returns:
trueif the value matches,falseotherwise- Throws:
LdapException- if some error occurred
-
compare
public boolean compare(String dn, String attributeName, Value value) throws LdapException
Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.- Specified by:
comparein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished name, it must be a valid distinguished name.attributeName- the attribute's namevalue- a Value<?> value with which the target entry's attribute value to be compared with- Returns:
trueif the value matches,falseotherwise- Throws:
LdapException- if some error occurred
-
compare
public boolean compare(Dn dn, String attributeName, String value) throws LdapException
Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.- Specified by:
comparein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished nameattributeName- the attribute's namevalue- a String value with which the target entry's attribute value to be compared with- Returns:
trueif the value matches,falseotherwise- Throws:
LdapException- if some error occurred
-
compare
public boolean compare(Dn dn, String attributeName, byte[] value) throws LdapException
Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.- Specified by:
comparein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished nameattributeName- the attribute's namevalue- a byte[] value with which the target entry's attribute value to be compared with- Returns:
trueif the value matches,falseotherwise- Throws:
LdapException- if some error occurred
-
compare
public boolean compare(Dn dn, String attributeName, Value value) throws LdapException
Compares whether a given attribute's value matches that of the existing value of the attribute present in the entry with the given distinguished name.- Specified by:
comparein interfaceLdapConnection- Parameters:
dn- the target entry's distinguished nameattributeName- the attribute's namevalue- a Value<?> value with which the target entry's attribute value to be compared with- Returns:
trueif the value matches,falseotherwise- Throws:
LdapException- if some error occurred
-
compare
public CompareResponse compare(CompareRequest compareRequest) throws LdapException
Compares an entry's attribute's value with that of the given value.- Specified by:
comparein interfaceLdapConnection- Parameters:
compareRequest- the compare request which contains the target distinguished name, attribute name and value- Returns:
- compare operation's response
- Throws:
LdapException- if some error occurred
-
compareAsync
public CompareFuture compareAsync(CompareRequest compareRequest) throws LdapException
Asynchronously compares an entry's attribute's value with that of the given value- Specified by:
compareAsyncin interfaceLdapAsyncConnection- Parameters:
compareRequest- the CompareRequest which contains the target Dn, attribute name and value- Returns:
- compare operation's future
- Throws:
LdapException- if some error occurred
-
extended
public ExtendedResponse extended(String oid) throws LdapException
Sends a extended operation request to the server with the given OID and no value.- Specified by:
extendedin interfaceLdapConnection- Parameters:
oid- the object identifier of the extended operation- Returns:
- extended operation's response
- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.extended(org.apache.directory.api.asn1.util.Oid, byte[])
-
extended
public ExtendedResponse extended(String oid, byte[] value) throws LdapException
Sends a extended operation request to the server with the given OID and value.- Specified by:
extendedin interfaceLdapConnection- Parameters:
oid- the object identifier of the extended operationvalue- value to be used by the extended operation, can be a null value- Returns:
- extended operation's response
- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.extended(org.apache.directory.api.asn1.util.Oid, byte[])
-
extended
public ExtendedResponse extended(Oid oid) throws LdapException
Sends a extended operation request to the server with the given OID and no value.- Specified by:
extendedin interfaceLdapConnection- Parameters:
oid- the object identifier of the extended operation- Returns:
- extended operation's response
- Throws:
LdapException- if some error occurred- See Also:
LdapConnection.extended(org.apache.directory.api.asn1.util.Oid, byte[])
-
extended
public ExtendedResponse extended(Oid oid, byte[] value) throws LdapException
Sends a extended operation request to the server with the given OID and value.- Specified by:
extendedin interfaceLdapConnection- Parameters:
oid- the object identifier of the extended operationvalue- value to be used by the extended operation, can be a null value- Returns:
- extended operation's response
- Throws:
LdapException- if some error occurred
-
extended
public ExtendedResponse extended(ExtendedRequest extendedRequest) throws LdapException
Performs an extended operation based on the extended request object.- Specified by:
extendedin interfaceLdapConnection- Parameters:
extendedRequest- the extended operation's request- Returns:
- Extended operation's response
- Throws:
LdapException- if the extended operation failed
-
extendedAsync
public ExtendedFuture extendedAsync(ExtendedRequest extendedRequest) throws LdapException
Asynchronously requests the server to perform an extended operation based on the given request.- Specified by:
extendedAsyncin interfaceLdapAsyncConnection- Parameters:
extendedRequest- the object containing the details of the extended operation to be performed- Returns:
- extended operation's Future
- Throws:
LdapException- if some error occurred
-
exists
public boolean exists(String dn) throws LdapException
Tells if an entry exists in the server.- Specified by:
existsin interfaceLdapConnection- Parameters:
dn- The distinguished name of the entry to check for existence, must be a valid distinguished name.- Returns:
trueif the entry exists,falseotherwise. Note that if the entry exists but if the user does not have the permission to read it,falsewill also be returned- Throws:
LdapException- if some error occurred
-
exists
public boolean exists(Dn dn) throws LdapException
Tells if an Entry exists in the server.- Specified by:
existsin interfaceLdapConnection- Parameters:
dn- The distinguished name of the entry to check for existence- Returns:
trueif the entry exists,falseotherwise. Note that if the entry exists but if the user does not have the permission to read it,falsewill also be returned- Throws:
LdapException- if some error occurred
-
getRootDse
public Entry getRootDse() throws LdapException
Get back the RooDSE from the connected server. All user and operational attributes are returned.- Specified by:
getRootDsein interfaceLdapConnection- Returns:
- The Entry containing all the information about the rootDSE
- Throws:
LdapException- If the rootDSE can't be read
-
getRootDse
public Entry getRootDse(String... attributes) throws LdapException
Get back the RooDSE from the connected server. The user can provide the list of attributes he wants to get back. Sending "*" will return all the user attributes, sending "+" will return all the operational attributes.- Specified by:
getRootDsein interfaceLdapConnection- Parameters:
attributes- The list of attributes to return- Returns:
- The Entry containing all the information about the rootDSE
- Throws:
LdapException- If the rootDSE can't be read
-
lookup
public Entry lookup(Dn dn) throws LdapException
Searches for an entry having the given distinguished name..- Specified by:
lookupin interfaceLdapConnection- Parameters:
dn- the distinguished name of the entry to be fetched- Returns:
- the Entry with the given distinguished name or null if no entry exists with that distinguished name.
- Throws:
LdapException- in case of any problems while searching for the distinguished name or if the returned response contains a referral- See Also:
LdapConnection.lookup(Dn, String...)
-
lookup
public Entry lookup(String dn) throws LdapException
Searches for an entry having the given distinguished name.- Specified by:
lookupin interfaceLdapConnection- Parameters:
dn- the distinguished name of the entry to be fetched- Returns:
- the Entry with the given distinguished name or null if no entry exists with that distinguished name.
- Throws:
LdapException- in case of any problems while searching for the distinguished name or if the returned response contains a referral- See Also:
LdapConnection.lookup(String, String...)
-
lookup
public Entry lookup(Dn dn, String... attributes) throws LdapException
Searches for an entry having the given distinguished name.- Specified by:
lookupin interfaceLdapConnection- Parameters:
dn- the distinguished name of the entry to be fetchedattributes- the attributes to be returned along with entry- Returns:
- the Entry with the given distinguished name or null if no entry exists with that distinguished name.
- Throws:
LdapException- in case of any problems while searching for the distinguished name or if the returned response contains a referral
-
lookup
public Entry lookup(Dn dn, Control[] controls, String... attributes) throws LdapException
Searches for an entry having the given distinguished name.- Specified by:
lookupin interfaceLdapConnection- Parameters:
dn- the distinguished name of the entry to be fetchedcontrols- the controls to useattributes- the attributes to be returned along with entry- Returns:
- the Entry with the given distinguished name or null if no entry exists with that distinguished name.
- Throws:
LdapException- in case of any problems while searching for the distinguished name or if the returned response contains a referral
-
lookup
public Entry lookup(String dn, String... attributes) throws LdapException
Searches for an entry having the given distinguished name.- Specified by:
lookupin interfaceLdapConnection- Parameters:
dn- the distinguished name of the entry to be fetchedattributes- the attributes to be returned along with entry- Returns:
- the Entry with the given distinguished name or null if no entry exists with that distinguished name.
- Throws:
LdapException- in case of any problems while searching for the distinguished name or if the returned response contains a referral- See Also:
LdapConnection.lookup(Dn, String...)
-
lookup
public Entry lookup(String dn, Control[] controls, String... attributes) throws LdapException
Searches for an entry having the given distinguished name.- Specified by:
lookupin interfaceLdapConnection- Parameters:
dn- the distinguished name of the entry to be fetchedcontrols- the controls to useattributes- the attributes to be returned along with entry- Returns:
- the Entry with the given distinguished name or null if no entry exists with that distinguished name.
- Throws:
LdapException- in case of any problems while searching for the distinguished name or if the returned response contains a referral- See Also:
LdapConnection.lookup(Dn, String...)
-
isControlSupported
public boolean isControlSupported(String controlOID) throws LdapException
Checks if a control with the given OID is supported.- Specified by:
isControlSupportedin interfaceLdapConnection- Parameters:
controlOID- the OID of the control- Returns:
- true if the control is supported, false otherwise
- Throws:
LdapException- if some error occurred
-
getSupportedControls
public List<String> getSupportedControls() throws LdapException
Get the Controls supported by server.- Specified by:
getSupportedControlsin interfaceLdapConnection- Returns:
- a list of control OIDs supported by server
- Throws:
LdapException- if some error occurred
-
loadSchema
public void loadSchema() throws LdapExceptionLoads all the default schemas that are bundled with the API.
Note: This method enables all schemas prior to loading.- Specified by:
loadSchemain interfaceLdapConnection- Throws:
LdapException- in case of problems while loading the schema
-
loadSchemaRelaxed
public void loadSchemaRelaxed() throws LdapExceptionLoads all the default schemas that are bundled with the API, in a relaxed mode.
Note: This method enables all schemas prior to loading.
The relaxed mode will allow inconsistencies in the schema.- Specified by:
loadSchemaRelaxedin interfaceLdapConnection- Throws:
LdapException- in case of problems while loading the schema
-
loadSchema
public void loadSchema(SchemaLoader loader) throws LdapException
loads schema using the specified schema loader- Parameters:
loader- theSchemaLoaderto be used to load schema- Throws:
LdapException- If the schema loading failed
-
addSchema
public void addSchema(File schemaFile) throws LdapException
parses the given schema file present in OpenLDAP schema format and adds all the SchemaObjects present in it to the SchemaManager- Parameters:
schemaFile- the schema file in OpenLDAP schema format- Throws:
LdapException- in case of any errors while parsing
-
addSchema
public void addSchema(String schemaFileName) throws LdapException
- Parameters:
schemaFileName- The schema file name to add- Throws:
LdapException- If the schema addition failed- See Also:
addSchema(File)
-
getCodecService
public LdapApiService getCodecService()
Gets the LDAP CODEC service responsible for encoding and decoding messages.- Specified by:
getCodecServicein interfaceLdapConnection- Returns:
- The LDAP CODEC service.
-
getSchemaManager
public SchemaManager getSchemaManager()
- Specified by:
getSchemaManagerin interfaceLdapConnection- Returns:
- The SchemaManager associated with this LdapConection if any
-
getConfig
public LdapConnectionConfig getConfig()
gives the configuration information of the connection- Specified by:
getConfigin interfaceLdapAsyncConnection- Returns:
- the configuration of the connection
-
isRequestCompleted
public boolean isRequestCompleted(int messageId)
Checks if a request has been completed, or not.- Specified by:
isRequestCompletedin interfaceLdapConnection- Parameters:
messageId- ID of the request- Returns:
- true if the request has been completed, false is still being processed
-
doesFutureExistFor
public boolean doesFutureExistFor(int messageId)
Checks if there is a ResponseFuture associated with the given message ID.- Specified by:
doesFutureExistForin interfaceLdapConnection- Parameters:
messageId- ID of the request- Returns:
- true if there is a non-null future exists, false otherwise
-
addConnectionClosedEventListener
public void addConnectionClosedEventListener(ConnectionClosedEventListener ccListener)
Adds the connection closed event listener.- Parameters:
ccListener- the connection closed listener
-
inputClosed
public void inputClosed(IoSession session) throws Exception
Handle the closure of an half-duplex TCP channel- Specified by:
inputClosedin interfaceIoHandler- Overrides:
inputClosedin classIoHandlerAdapter- Parameters:
session- The session which input is being closed- Throws:
Exception- If we get an exception while closing the input
-
sessionCreated
public void sessionCreated(IoSession session) throws Exception
This method is called when a new session is created. We will store some informations that the session will need to process incoming requests.- Specified by:
sessionCreatedin interfaceIoHandler- Overrides:
sessionCreatedin classIoHandlerAdapter- Parameters:
session- the newly created session- Throws:
Exception- If we get an exception while processing the create event
-
sessionClosed
public void sessionClosed(IoSession session) throws Exception
Invoked when a connection is closed.- Specified by:
sessionClosedin interfaceIoHandler- Overrides:
sessionClosedin classIoHandlerAdapter- Parameters:
session- The session being closed- Throws:
Exception- If we get an exception while processing the close event
-
startTls
public void startTls() throws LdapExceptionSends the StartTLS extended request to server and adds a security layer upon receiving a response with successful result. Note that we will use the default LDAP connection.- Throws:
LdapException- If the StartTLS operation failed
-
bindSasl
public BindFuture bindSasl(SaslRequest saslRequest) throws LdapException
Process the SASL Bind. It's a dialog with the server, we will send a first BindRequest, receive a response and the, if this response is a challenge, continue by sending a new BindRequest with the requested informations.- Parameters:
saslRequest- The SASL request object containing all the needed parameters- Returns:
- A
BindResponsecontaining the result - Throws:
LdapException- if some error occurred
-
getBinaryAttributeDetector
public BinaryAttributeDetector getBinaryAttributeDetector()
- Specified by:
getBinaryAttributeDetectorin interfaceLdapConnection- Returns:
- the object responsible for the detection of binary attributes
-
setBinaryAttributeDetector
public void setBinaryAttributeDetector(BinaryAttributeDetector binaryAttributeDetector)
Sets the object responsible for the detection of binary attributes.- Specified by:
setBinaryAttributeDetectorin interfaceLdapConnection- Parameters:
binaryAttributeDetector- The Binary Attribute Detector to use
-
setSchemaManager
public void setSchemaManager(SchemaManager schemaManager)
sets a SchemaManager to be used by this connection- Specified by:
setSchemaManagerin interfaceLdapConnection- Parameters:
schemaManager- The SchemaManager to set
-
getSocketSessionConfig
public SocketSessionConfig getSocketSessionConfig()
- Returns:
- the socketSessionConfig
-
setSocketSessionConfig
public void setSocketSessionConfig(SocketSessionConfig socketSessionConfig)
- Parameters:
socketSessionConfig- the socketSessionConfig to set
-
event
public void event(IoSession session, FilterEvent event) throws Exception
Invoked when a filter event is fired. Each filter might sent a different event, this is very application specific.- Specified by:
eventin interfaceIoHandler- Overrides:
eventin classIoHandlerAdapter- Parameters:
session- The session for which we have an event to processevent- The event to process- Throws:
Exception- If we get an exception while processing the event
-
getSslSession
public SSLSession getSslSession()
Gets theSSLSessionassociated with the connection.- Returns:
- the
SSLSessionassociated with the connection or null if the connection is not secured
-
-