Changed to unmaintained
[appc.git] / appc-adapters / appc-ssh-adapter / appc-ssh-adapter-sshd / src / test / java / org / onap / appc / adapter / ssh / sshd / SshAdapterSample.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * ================================================================================
9  * Modifications Copyright (C) 2019 Ericsson
10  * =============================================================================
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  * 
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  * 
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  * 
23  * ============LICENSE_END=========================================================
24  */
25
26 package org.onap.appc.adapter.ssh.sshd;
27
28 import java.io.ByteArrayOutputStream;
29 import java.io.OutputStream;
30
31 import org.onap.appc.adapter.ssh.SshAdapter;
32 import org.onap.appc.adapter.ssh.SshConnection;
33 import org.onap.appc.adapter.ssh.sshd.SshAdapterSshd;
34
35 public class SshAdapterSample {
36
37     public static void main(String[] args) {
38         String host = "hostname";
39         int port = 22;
40         String username = "user";
41         String password = "secret";
42         String command = "ls";
43
44         SshAdapter sshAdapter = new SshAdapterSshd();
45         SshConnection sshConnection = sshAdapter.getConnection(host, port, username, password);
46         sshConnection.connect();
47         try {
48             OutputStream stdout = new ByteArrayOutputStream();
49             OutputStream stderr = new ByteArrayOutputStream();
50             int status = sshConnection.execCommand(command, stdout, stderr);
51             if(status == 0) {
52                 System.out.println("Command executed successfully. Output:\n" + stdout.toString());
53             } else {
54                 System.err.println("Command returned status " + status + ". Error:\n" + stderr.toString());
55             }
56         } finally {
57             sshConnection.disconnect();
58         }
59     }
60 }