tools/src/main/java/org/apache/rocketmq/tools/command/offset/GetConsumerStatusCommand.java [43:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Options buildCommandlineOptions(Options options) {
        Option opt = new Option("g", "group", true, "set the consumer group");
        opt.setRequired(true);
        options.addOption(opt);

        opt = new Option("t", "topic", true, "set the topic");
        opt.setRequired(true);
        options.addOption(opt);

        opt = new Option("i", "originClientId", true, "set the consumer clientId");
        opt.setRequired(false);
        options.addOption(opt);

        return options;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tools/src/main/java/org/apache/rocketmq/tools/command/auth/CopyAclsSubCommand.java [46:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Options buildCommandlineOptions(Options options) {

        Option opt = new Option("f", "fromBroker", true, "the source broker that the acls copy from");
        opt.setRequired(true);
        options.addOption(opt);

        opt = new Option("t", "toBroker", true, "the target broker that the acls copy to");
        opt.setRequired(true);
        options.addOption(opt);

        opt = new Option("s", "subjects", true, "the subject list of acl to copy.");
        opt.setRequired(false);
        options.addOption(opt);

        return options;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tools/src/main/java/org/apache/rocketmq/tools/command/auth/CopyUsersSubCommand.java [46:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Options buildCommandlineOptions(Options options) {

        Option opt = new Option("f", "fromBroker", true, "the source broker that the users copy from");
        opt.setRequired(true);
        options.addOption(opt);

        opt = new Option("t", "toBroker", true, "the target broker that the users copy to");
        opt.setRequired(true);
        options.addOption(opt);

        opt = new Option("u", "usernames", true, "the username list of user to copy.");
        opt.setRequired(false);
        options.addOption(opt);

        return options;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



