Changed to unmaintained
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-adapter-bundle / src / main / java / org / onap / appc / adapter / netconf / NetconfConnectionDetails.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.netconf;
25
26 import java.util.List;
27 import java.util.Properties;
28
29 /**
30  * Provides details required for connecting to netconf device.
31  */
32 public class NetconfConnectionDetails {
33
34     private String host;
35     private int port;
36     private String username;
37     private String password;
38
39     public static final int DEFAULT_PORT = 830;
40     private List<String> capabilities;
41     private Properties additionalProperties;
42
43     public NetconfConnectionDetails() {
44         super();
45         setPort(DEFAULT_PORT);
46     }
47     public String getHost() {
48         return host;
49     }
50
51     public void setHost(String host) {
52         this.host = host;
53     }
54
55     public int getPort() {
56         return port;
57     }
58
59     public void setPort(int port) {
60         this.port = port;
61     }
62
63     public String getUsername() {
64         return username;
65     }
66
67     public void setUsername(String username) {
68         this.username = username;
69     }
70
71     public String getPassword() {
72         return password;
73     }
74
75     public void setPassword(String password) {
76         this.password = password;
77     }
78
79     public List<String> getCapabilities() {
80         return capabilities;
81     }
82
83     public void setCapabilities(List<String> capabilities) {
84         this.capabilities = capabilities;
85     }
86
87     public Properties getAdditionalProperties() {
88         return additionalProperties;
89     }
90
91     public void setAdditionalProperties(Properties additionalProperties) {
92         this.additionalProperties = additionalProperties;
93     }
94 }