X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-netconf-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fconnect%2Fnetconf%2FNetconfInventoryUtils.java;h=b68f18f52ebb06a47dc57249ae990469b5d0693b;hb=207dfa6ea38ed9847bb48aa052ebf70d68d0a37d;hp=bae0f089473be0b5dab92d717dc52b800a4cf57d;hpb=4c1e9ed9fa2386ca63a0bbf11da620c83a6d7d5e;p=controller.git diff --git a/opendaylight/md-sal/sal-netconf-connector/src/main/java/org/opendaylight/controller/sal/connect/netconf/NetconfInventoryUtils.java b/opendaylight/md-sal/sal-netconf-connector/src/main/java/org/opendaylight/controller/sal/connect/netconf/NetconfInventoryUtils.java index bae0f08947..b68f18f52e 100644 --- a/opendaylight/md-sal/sal-netconf-connector/src/main/java/org/opendaylight/controller/sal/connect/netconf/NetconfInventoryUtils.java +++ b/opendaylight/md-sal/sal-netconf-connector/src/main/java/org/opendaylight/controller/sal/connect/netconf/NetconfInventoryUtils.java @@ -11,18 +11,19 @@ import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.CompositeNode; public class NetconfInventoryUtils { - - public static final QName NETCONF_MOUNT = null; public static final QName NETCONF_ENDPOINT = null; public static final QName NETCONF_ENDPOINT_ADDRESS = null; public static final QName NETCONF_ENDPOINT_PORT = null; + private NetconfInventoryUtils() { + throw new UnsupportedOperationException("Utility class cannot be instantiated"); + } public static String getEndpointAddress(CompositeNode node) { return node.getCompositesByName(NETCONF_ENDPOINT).get(0).getFirstSimpleByName(NETCONF_ENDPOINT_ADDRESS).getValue().toString(); } - + public static String getEndpointPort(CompositeNode node) { return node.getCompositesByName(NETCONF_ENDPOINT).get(0).getFirstSimpleByName(NETCONF_ENDPOINT_PORT).getValue().toString(); }