26a70f054268e3477e2abbf8af4dce78c26c4fcd
[dmaap/messagerouter/dmaapclient.git] / src / main / java / org / onap / dmaap / mr / tools / AuthCommand.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.mr.tools;
23
24 import java.io.PrintStream;
25
26 import com.att.nsa.cmdtool.Command;
27 import com.att.nsa.cmdtool.CommandNotReadyException;
28
29 public class AuthCommand implements Command<MRCommandContext>
30 {
31         @Override
32         public void checkReady ( MRCommandContext context ) throws CommandNotReadyException
33         {
34         }
35
36         @Override
37         public void execute ( String[] parts, MRCommandContext context, PrintStream out ) throws CommandNotReadyException
38         {
39                 if ( parts.length > 0 )
40                 {
41                         context.setAuth ( parts[0], parts[1] );
42                         out.println ( "Now authenticating with " + parts[0] );
43                 }
44                 else
45                 {
46                         context.clearAuth ();
47                         out.println ( "No longer authenticating." );
48                 }
49         }
50
51         @Override
52         public void displayHelp ( PrintStream out )
53         {
54                 out.println ( "auth <apiKey> <apiSecret>" );
55                 out.println ( "\tuse these credentials on subsequent transactions" );
56                 out.println ( "noauth" );
57                 out.println ( "\tdo not use credentials on subsequent transactions" );
58         }
59
60         @Override
61         public String[] getMatches ()
62         {
63                 return new String[]
64                 {
65                         "auth (\\S*) (\\S*)",
66                         "noauth"
67                 };
68         }
69 }