Sync Integ to Master
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / cli / CLIUtils.java
1 package org.openecomp.sdc.asdctool.cli;
2
3 import org.apache.commons.cli.Option;
4
5 public class CLIUtils {
6
7     static final String CONFIG_PATH_SHORT_OPT = "c";
8     private static final String CONFIG_PATH_LONG_OPT = "configFolderPath";
9
10     private CLIUtils(){}
11
12     public static Option getConfigurationPathOption() {
13         return Option.builder(CONFIG_PATH_SHORT_OPT)
14                 .longOpt(CONFIG_PATH_LONG_OPT)
15                 .required()
16                 .hasArg()
17                 .desc("path to sdc configuration folder - required")
18                 .build();
19     }
20
21 }