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

el_kaboing
11.03.2006 559f171dc5652fa8569ce04073d75d93c7859748
opends/tests/integration-tests-testng/src/server/org/opends/server/OpenDSIntegrationTests.java
@@ -104,9 +104,9 @@
    return outStr;
  }
  public void startOpenDS(String dsee_home) throws Exception
  public void startOpenDS(String dsee_home, String port) throws Exception
  {
    dsAdmin = new OpenDSAdmin(dsee_home);
    dsAdmin = new OpenDSAdmin(dsee_home, port);
    System.out.println("OpenDS is starting.....");
    dsAdmin.start();
@@ -114,11 +114,11 @@
    System.out.println("OpenDS has started.");
  }
  public void stopOpenDS(String dsee_home) throws Exception
  public void stopOpenDS(String dsee_home, String port) throws Exception
  {
    if(dsAdmin == null)
    {
      dsAdmin = new OpenDSAdmin(dsee_home);
      dsAdmin = new OpenDSAdmin(dsee_home, port);
    }
    System.out.println("OpenDS is stopping.....");