Github user imesh commented on a diff in the pull request:

    https://github.com/apache/stratos/pull/198#discussion_r23766317
  
    --- Diff: 
components/org.apache.stratos.cli/src/main/java/org/apache/stratos/cli/commands/AddNetworkPartitionCommand.java
 ---
    @@ -0,0 +1,174 @@
    +/**
    + *  Licensed to the Apache Software Foundation (ASF) under one
    + *  or more contributor license agreements.  See the NOTICE file
    + *  distributed with this work for additional information
    + *  regarding copyright ownership.  The ASF licenses this file
    + *  to you under the Apache License, Version 2.0 (the
    + *  "License"); you may not use this file except in compliance
    + *  with the License.  You may obtain a copy of the License at
    +
    + *  http://www.apache.org/licenses/LICENSE-2.0
    +
    + *  Unless required by applicable law or agreed to in writing,
    + *  software distributed under the License is distributed on an
    + *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + *  KIND, either express or implied.  See the License for the
    + *  specific language governing permissions and limitations
    + *  under the License.
    + */
    +
    +package org.apache.stratos.cli.commands;
    +
    +import org.apache.commons.cli.*;
    +import org.apache.stratos.cli.Command;
    +import org.apache.stratos.cli.RestCommandLineService;
    +import org.apache.stratos.cli.StratosCommandContext;
    +import org.apache.stratos.cli.exception.CommandException;
    +import org.apache.stratos.cli.utils.CliConstants;
    +import org.slf4j.Logger;
    +import org.slf4j.LoggerFactory;
    +
    +import java.io.BufferedReader;
    +import java.io.FileReader;
    +import java.io.IOException;
    +
    +public class AddNetworkPartitionCommand implements 
Command<StratosCommandContext> {
    +
    +    private static final Logger logger = 
LoggerFactory.getLogger(AddNetworkPartitionCommand.class);
    +
    +    private final Options options;
    +
    +    public AddNetworkPartitionCommand(){
    +        options = constructOptions();
    +    }
    +
    +    private Options constructOptions() {
    +        final Options options = new Options();
    +
    +        Option resourcePath = new Option(CliConstants.RESOURCE_PATH, 
CliConstants.RESOURCE_PATH_LONG_OPTION, true,
    +                "Network partition resource path");
    +        resourcePath.setArgName("resource path");
    +        options.addOption(resourcePath);
    +
    +        return options;
    +    }
    +    /**
    +     * @return The name of the command
    +     */
    +    @Override
    +    public String getName() {
    +        return "add-network-partition";
    +    }
    +
    +    /**
    +     * Information about the command
    +     *
    +     * @return The description of the command
    +     */
    +    @Override
    +    public String getDescription() {
    +        return "add network partition deployment";
    --- End diff --
    
    May be we can change text "add" to "Add".


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to