da99d06dd4ded6897e90a7c1227d722f25de970d
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / util / TheConsole.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 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  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.util;
23
24 public class TheConsole implements MyConsole {
25     @Override
26     public String readLine(String fmt, Object... args) {
27         String rv = System.console().readLine(fmt, args);
28         if (args.length>0 && args[0]!=null && rv.length()==0) {
29             rv = args[0].toString();
30         }
31         return rv;
32     }
33
34     @Override
35     public char[] readPassword(String fmt, Object... args) {
36         return System.console().readPassword(fmt, args);
37     }
38     
39     public static boolean implemented() {
40         return System.console()!=null;
41     }
42
43     @Override
44     public void printf(String fmt, Object... args) {
45         System.console().printf(fmt, args);
46     }
47 }