mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
03.33.2007 8532a5133e996e61765be126f8b4d25984745fd1
opends/src/server/org/opends/server/admin/client/ldap/LDAPManagementContext.java
@@ -30,9 +30,8 @@
import org.opends.server.admin.LDAPProfile;
import org.opends.server.admin.client.ManagedObject;
import org.opends.server.admin.client.ManagementContext;
import org.opends.server.admin.std.client.RootCfgClient;
import org.opends.server.admin.client.spi.Driver;
import org.opends.server.util.Validator;
@@ -63,7 +62,7 @@
  // Private constructor.
  private LDAPManagementContext(LDAPConnection connection,
      LDAPProfile profile) {
    this.driver = new LDAPDriver(connection, profile);
    this.driver = new LDAPDriver(this, connection, profile);
  }
@@ -71,7 +70,8 @@
  /**
   * {@inheritDoc}
   */
  public ManagedObject<RootCfgClient> getRootConfigurationManagedObject() {
    return LDAPManagedObject.getRootManagedObject(driver);
  @Override
  protected Driver getDriver() {
    return driver;
  }
}