Update features for Argon release
[ccsdk/features.git] / sdnr / wt / data-provider / provider / src / test / java / org / onap / ccsdk / features / sdnr / wt / dataprovider / test / TestNetconfNodeBuilder.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
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  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.dataprovider.test;
23
24 import org.junit.Test;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev221225.credentials.Credentials;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev221225.credentials.credentials.LoginPassword;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.device.rev221225.credentials.credentials.LoginPasswordBuilder;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev221225.NetconfNode;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev221225.NetconfNodeBuilder;
30
31 @SuppressWarnings("deprecation")
32 public class TestNetconfNodeBuilder {
33
34     @Test
35     public void test() {
36
37         NetconfNodeBuilder netconfNodeBuilder = new NetconfNodeBuilder();
38
39         LoginPasswordBuilder loginPasswordBuilder = new LoginPasswordBuilder();
40         loginPasswordBuilder.setUsername("myTestUsername");
41         loginPasswordBuilder.setPassword("myTestPassword");
42         netconfNodeBuilder.setCredentials(loginPasswordBuilder.build());
43
44         NetconfNode netconfNode = netconfNodeBuilder.build();
45         System.out.println(netconfNode);
46
47         Credentials credentials = netconfNode.getCredentials();
48         System.out.println("Class: " + credentials.getClass() + "\nContent: " + credentials);
49
50         if (credentials instanceof LoginPassword) {
51             LoginPassword loginPassword = (LoginPassword) credentials;
52             System.out.println("User: " + loginPassword.getUsername() + " Password" + loginPassword.getPassword());
53         } else {
54             System.out.println("Not expected class");
55         }
56     }
57
58 }