| | |
| | | package com.forgerock.opendj.ldap.tools; |
| | | |
| | | import org.forgerock.opendj.ldap.Connection; |
| | | import org.forgerock.opendj.ldap.AbstractConnectionWrapper; |
| | | import org.forgerock.opendj.ldap.ConnectionFactory; |
| | | import org.forgerock.opendj.ldap.ErrorResultException; |
| | | import org.forgerock.opendj.ldap.FutureResult; |
| | |
| | | import org.forgerock.opendj.ldap.requests.BindRequest; |
| | | import org.forgerock.opendj.ldap.responses.BindResult; |
| | | |
| | | import com.forgerock.opendj.util.ConnectionDecorator; |
| | | import com.forgerock.opendj.util.FutureResultTransformer; |
| | | import com.forgerock.opendj.util.RecursiveFutureResult; |
| | | import com.forgerock.opendj.util.Validator; |
| | |
| | | * An authenticated connection supports all operations except Bind |
| | | * operations. |
| | | */ |
| | | static final class AuthenticatedConnection extends ConnectionDecorator { |
| | | static final class AuthenticatedConnection extends AbstractConnectionWrapper { |
| | | |
| | | private final BindRequest request; |
| | | |