aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/zusammen-tools/src/main/java/org/openecomp/core/tools/util/ToolsUtil.java
blob: e2c80f022643f5e30fe29d4c79b2e14f5fc86d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.core.tools.util;

public class ToolsUtil {

  public static String getParam(String key, String[] args) {

    for (int j = 0; j < args.length; j++) {
      if (args[j].equals("-" + key)) {
        return args[j + 1];
      }
    }
    return null;
  }
}