First sonar issues review
[dmaap/messagerouter/dmaapclient.git] / src / test / java / org / onap / dmaap / mr / tools / MRTool.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Modifications Copyright © 2021 Orange.
8  *  ================================================================================
9  *  Licensed under the Apache License, Version 2.0 (the "License");
10  *  you may not use this file except in compliance with the License.
11  *  You may obtain a copy of the License at
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  *  ============LICENSE_END=========================================================
20  *
21  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  *
23  *******************************************************************************/
24
25 package org.onap.dmaap.mr.tools;
26
27 import com.att.nsa.cmdtool.CommandLineTool;
28 import org.onap.dmaap.mr.client.impl.MRClientVersionInfo;
29
30 import java.io.IOException;
31
32 public class MRTool extends CommandLineTool<MRCommandContext> {
33     protected MRTool() {
34         super("MR Tool (" + MRClientVersionInfo.getVersion() + ")", "MR> ");
35
36         registerCommand(new ApiKeyCommand());
37         registerCommand(new AuthCommand());
38         registerCommand(new ClusterCommand());
39         registerCommand(new MessageCommand());
40         registerCommand(new TopicCommand());
41         registerCommand(new TraceCommand());
42     }
43
44     public static void main(String[] args) throws IOException {
45         final MRTool ct = new MRTool();
46         final MRCommandContext ccc = new MRCommandContext();
47         ct.runFromMain(args, ccc);
48     }
49 }