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