Update license header in REST and SSH adapter file
[appc.git] / appc-adapters / appc-ssh-adapter / appc-ssh-adapter-tests / src / main / java / org / onap / appc / adapter / ssh / SshAdapterMock.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  * 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  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.adapter.ssh;
25
26 import java.util.ArrayList;
27 import java.util.List;
28
29 public class SshAdapterMock implements SshAdapter {
30
31         private List<SshConnectionMock> connectionMocks = new ArrayList<>();
32
33         private int returnStatus;
34         private String returnStdout;
35         private String returnStderr;
36
37         @Override
38         public SshConnection getConnection(String host, int port, String username, String password) {
39                 SshConnectionMock sshConnectionMock = new SshConnectionMock(host, port, username, password);
40                 sshConnectionMock.setReturnStatus(returnStatus);
41                 sshConnectionMock.setReturnStdout(returnStdout);
42                 sshConnectionMock.setReturnStderr(returnStderr);
43                 connectionMocks.add(sshConnectionMock);
44                 return sshConnectionMock;
45         }
46
47         public List<SshConnectionMock> getConnectionMocks() {
48                 return connectionMocks;
49         }
50
51         public int getReturnStatus() {
52                 return returnStatus;
53         }
54
55         public void setReturnStatus(int returnStatus) {
56                 this.returnStatus = returnStatus;
57         }
58
59         public String getReturnStdout() {
60                 return returnStdout;
61         }
62
63         public void setReturnStdout(String returnStdout) {
64                 this.returnStdout = returnStdout;
65         }
66
67         public String getReturnStderr() {
68                 return returnStderr;
69         }
70
71         public void setReturnStderr(String returnStderr) {
72                 this.returnStderr = returnStderr;
73         }
74 }