Merge "Resolve Bug:445 Remove freemarker from config code generator."
[controller.git] / opendaylight / md-sal / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / netconf / NetconfInventoryUtils.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.connect.netconf;
9
10 import org.opendaylight.yangtools.yang.common.QName;
11 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
12
13 public class NetconfInventoryUtils {
14     public static final QName NETCONF_MOUNT = null;
15     public static final QName NETCONF_ENDPOINT = null;
16     public static final QName NETCONF_ENDPOINT_ADDRESS = null;
17     public static final QName NETCONF_ENDPOINT_PORT = null;
18
19     private NetconfInventoryUtils() {
20         throw new UnsupportedOperationException("Utility class cannot be instantiated");
21     }
22
23     public static String getEndpointAddress(CompositeNode node) {
24         return node.getCompositesByName(NETCONF_ENDPOINT).get(0).getFirstSimpleByName(NETCONF_ENDPOINT_ADDRESS).getValue().toString();
25     }
26
27     public static String getEndpointPort(CompositeNode node) {
28         return node.getCompositesByName(NETCONF_ENDPOINT).get(0).getFirstSimpleByName(NETCONF_ENDPOINT_PORT).getValue().toString();
29     }
30 }