aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/mass-pnf-sim/pnf-sim-lightweight/src/main/java/org/onap/pnfsimulator/netconfmonitor/NetconfMonitorServiceConfiguration.java
blob: d97315ba48496b9f41e3bbaa8d3eda0483087bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/// *
// * ============LICENSE_START=======================================================
// * PNF-REGISTRATION-HANDLER
// * ================================================================================
// * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
// * ================================================================================
// * Licensed under the Apache License, Version 2.0 (the "License");
// * you may not use this file except in compliance with the License.
// * You may obtain a copy of the License at
// *
// * http://www.apache.org/licenses/LICENSE-2.0
// *
// * Unless required by applicable law or agreed to in writing, software
// * distributed under the License is distributed on an "AS IS" BASIS,
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// * See the License for the specific language governing permissions and
// * limitations under the License.
// * ============LICENSE_END=========================================================
// */
//
// package org.onap.pnfsimulator.netconfmonitor;
//
// import com.tailf.jnc.JNCException;
// import com.tailf.jnc.NetconfSession;
// import com.tailf.jnc.SSHConnection;
// import com.tailf.jnc.SSHSession;
// import java.io.IOException;
// import java.util.Map;
// import java.util.Timer;
// import org.onap.pnfsimulator.netconfmonitor.netconf.NetconfConfigurationCache;
// import org.onap.pnfsimulator.netconfmonitor.netconf.NetconfConfigurationReader;
// import org.onap.pnfsimulator.netconfmonitor.netconf.NetconfConfigurationWriter;
// import org.onap.pnfsimulator.netconfmonitor.netconf.NetconfConnectionParams;
// import org.slf4j.Logger;
// import org.slf4j.LoggerFactory;
// import org.springframework.context.annotation.Bean;
// import org.springframework.context.annotation.Configuration;
//
// @Configuration
// public class NetconfMonitorServiceConfiguration {
//
// private static final Logger LOGGER =
/// LoggerFactory.getLogger(NetconfMonitorServiceConfiguration.class);
// private static final Map<String, String> enviroment = System.getenv();
//
// private static final String LOG_PATH = "/var/log";
//
// private static final String NETCONF_ADDRESS = "NETCONF_ADDRESS";
// private static final String NETCONF_PORT = "NETCONF_PORT";
// private static final String NETCONF_MODEL = "NETCONF_MODEL";
// private static final String NETCONF_MAIN_CONTAINER = "NETCONF_MAIN_CONTAINER";
//
// private static final String DEFAULT_NETCONF_ADDRESS = "localhost";
// private static final int DEFAULT_NETCONF_PORT = 830;
// private static final String DEFAULT_NETCONF_MODEL = "pnf-simulator";
// private static final String DEFAULT_NETCONF_MAIN_CONTAINER = "config";
//
// private static final String DEFAULT_NETCONF_USER = "netconf";
// private static final String DEFAULT_NETCONF_PASSWORD = "netconf";
//
// @Bean
// public Timer timer() {
// return new Timer("NetconfMonitorServiceTimer");
// }
//
// @Bean
// public NetconfConfigurationCache configurationCache() {
// return new NetconfConfigurationCache();
// }
//
// @Bean
// public NetconfConfigurationReader configurationReader() throws IOException, JNCException {
// NetconfConnectionParams params = resolveConnectionParams();
// LOGGER.info("Configuration params are : {}", params);
// NetconfSession session = createNetconfSession(params);
// return new NetconfConfigurationReader(session, buildModelPath());
// }
//
// NetconfSession createNetconfSession(NetconfConnectionParams params) throws IOException,
/// JNCException {
// SSHConnection sshConnection = new SSHConnection(params.address, params.port);
// sshConnection.authenticateWithPassword(params.user, params.password);
// return new NetconfSession( new SSHSession(sshConnection));
// }
//
// @Bean
// public NetconfConfigurationWriter netconfConfigurationWriter() {
// return new NetconfConfigurationWriter(LOG_PATH);
// }
//
// private String buildModelPath() {
// return String.format("/%s:%s",
// enviroment.getOrDefault(NETCONF_MODEL, DEFAULT_NETCONF_MODEL),
// enviroment.getOrDefault(NETCONF_MAIN_CONTAINER, DEFAULT_NETCONF_MAIN_CONTAINER));
// }
//
// NetconfConnectionParams resolveConnectionParams() {
// return new NetconfConnectionParams(
// enviroment.getOrDefault(NETCONF_ADDRESS, DEFAULT_NETCONF_ADDRESS),
// resolveNetconfPort(),
// DEFAULT_NETCONF_USER,
// DEFAULT_NETCONF_PASSWORD);
// }
//
// private int resolveNetconfPort() {
// try {
// return Integer.parseInt(enviroment.get(NETCONF_PORT));
// } catch (NumberFormatException e) {
// LOGGER.warn("Invalid netconf port: {}. Default netconf port {} is set.", e.getMessage(),
// DEFAULT_NETCONF_PORT);
// return DEFAULT_NETCONF_PORT;
// }
// }
// }