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

lutoff
27.12.2007 9152abd295ad89928460be58312d123861a518b5
opendj-sdk/opends/src/server/org/opends/server/admin/client/cli/DsFrameworkCliParser.java
File was renamed from opendj-sdk/opends/src/server/org/opends/server/admin/client/cli/DsServiceCliParser.java
@@ -51,7 +51,7 @@
import org.opends.admin.ads.ADSContextException;
import org.opends.admin.ads.util.ApplicationKeyManager;
import org.opends.admin.ads.util.ApplicationTrustManager;
import org.opends.server.admin.client.cli.DsServiceCliReturnCode.ReturnCode;
import org.opends.server.admin.client.cli.DsFrameworkCliReturnCode.ReturnCode;
import org.opends.server.loggers.debug.DebugTracer;
import org.opends.server.types.DebugLogLevel;
import org.opends.server.util.PasswordReader;
@@ -68,7 +68,7 @@
/**
 * This class will parser CLI arguments.
 */
public class DsServiceCliParser extends SubCommandArgumentParser
public class DsFrameworkCliParser extends SubCommandArgumentParser
{
  /**
   * The tracer object for the debug logger.
@@ -164,12 +164,12 @@
   * The Logger.
   */
  static private final Logger LOG =
    Logger.getLogger(DsServiceCliParser.class.getName());
    Logger.getLogger(DsFrameworkCliParser.class.getName());
  /**
   * The diferent CLI group.
   */
  public HashSet<DsServiceCliSubCommandGroup> cliGroup;
  public HashSet<DsFrameworkCliSubCommandGroup> cliGroup;
@@ -188,11 +188,11 @@
   *          Indicates whether subcommand and long argument names
   *          should be treated in a case-sensitive manner.
   */
  public DsServiceCliParser(String mainClassName, String toolDescription,
  public DsFrameworkCliParser(String mainClassName, String toolDescription,
      boolean longArgumentsCaseSensitive)
  {
    super(mainClassName, toolDescription, longArgumentsCaseSensitive);
    cliGroup = new HashSet<DsServiceCliSubCommandGroup>();
    cliGroup = new HashSet<DsFrameworkCliSubCommandGroup>();
  }
  /**
@@ -212,13 +212,13 @@
    initializeGlobalOption(outStream);
    // ads  Group cli
    cliGroup.add(new DsServiceCliAds());
    cliGroup.add(new DsFrameworkCliAds());
    // Server Group cli
    cliGroup.add(new DsServiceCliServerGroup());
    cliGroup.add(new DsFrameworkCliServerGroup());
    // Initialization
    for (DsServiceCliSubCommandGroup oneCli : cliGroup)
    for (DsFrameworkCliSubCommandGroup oneCli : cliGroup)
    {
      oneCli.initializeCliGroup(this, verboseArg);
    }
@@ -467,7 +467,7 @@
  {
    SubCommand subCmd = getSubCommand();
    for (DsServiceCliSubCommandGroup oneCli : cliGroup)
    for (DsFrameworkCliSubCommandGroup oneCli : cliGroup)
    {
      if (oneCli.isSubCommand(subCmd))
      {