Updating licenses in all files
[appc.git] / appc-dg / appc-dg-shared / appc-dg-netconf / src / test / java / org / openecomp / appc / dg / netconf / impl / DAOServiceMock.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.dg.netconf.impl;
24
25 import java.util.HashMap;
26
27 import org.openecomp.appc.adapter.netconf.ConnectionDetails;
28 import org.openecomp.appc.adapter.netconf.NetconfConnectionDetails;
29 import org.openecomp.appc.adapter.netconf.NetconfDataAccessService;
30 import org.openecomp.appc.adapter.netconf.exception.DataAccessException;
31 import org.openecomp.sdnc.sli.resource.dblib.DbLibService;
32
33 class DAOServiceMock implements NetconfDataAccessService {
34
35     private String configFile;
36     private ConnectionDetails connection;
37     private HashMap<String, String> backupConf;
38
39     @Override
40     public void setSchema(String schema) {
41     }
42
43     @Override
44     public void setDbLibService(DbLibService dbLibService) {
45     }
46
47     void setConfigFile(String configFile) {
48         this.configFile = configFile;
49     }
50
51     public HashMap<String, String> getBackupConf() {
52         return backupConf;
53     }
54
55     public void setConnection(ConnectionDetails connection) {
56         this.connection = connection;
57     }
58
59     @Override
60     public String retrieveConfigFileName(String xmlID) throws DataAccessException {
61         if (!xmlID.equals("wrong")) {
62             return configFile;
63         } else {
64             throw new DataAccessException();
65         }
66     }
67
68     @Override
69     public boolean retrieveConnectionDetails(String vnfType, ConnectionDetails connectionDetails) throws
70                     DataAccessException {
71         return false;
72     }
73
74     @Override
75     public boolean retrieveNetconfConnectionDetails(String vnfType, NetconfConnectionDetails connectionDetails) throws
76                     DataAccessException {
77         if (vnfType.equals("VNF")) {
78             connectionDetails.setHost(connection.getHost());
79             connectionDetails.setPassword(connection.getPassword());
80             connectionDetails.setPort(connection.getPort());
81             connectionDetails.setUsername(connection.getUsername());
82
83             return true;
84         } else {
85             return false;
86         }
87     }
88
89     @Override
90     public boolean logDeviceInteraction(String instanceId, String requestId, String creationDate, String logText) throws
91                     DataAccessException {
92         this.backupConf = new HashMap<>();
93         backupConf.put("creationDate", creationDate);
94         backupConf.put("logText", logText);
95         return true;
96     }
97
98 }