Bug 8153: Enforce check-style rules for netconf - netconf-topology
[netconf.git] / netconf / netconf-topology / src / main / java / org / opendaylight / netconf / topology / impl / TopologyUtil.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.netconf.topology.impl;
10
11 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NetworkTopology;
12 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
13 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.TopologyId;
14 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.Topology;
15 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.TopologyKey;
16 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.NodeKey;
17 import org.opendaylight.yangtools.yang.binding.Identifier;
18 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
19 import org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier;
20
21 public final class TopologyUtil {
22
23     private TopologyUtil() {
24         throw new AssertionError("Instantiating utility class.");
25     }
26
27     /**
28      * Determines the Netconf Node Node ID, given the node's instance
29      * identifier.
30      *
31      * @param pathArgument Node's path argument
32      * @return     NodeId for the node
33      */
34     public static NodeId getNodeId(final InstanceIdentifier.PathArgument pathArgument) {
35         if (pathArgument instanceof InstanceIdentifier.IdentifiableItem<?, ?>) {
36
37             final Identifier key = ((InstanceIdentifier.IdentifiableItem) pathArgument).getKey();
38             if (key instanceof NodeKey) {
39                 return ((NodeKey) key).getNodeId();
40             }
41         }
42         throw new IllegalStateException("Unable to create NodeId from: " + pathArgument);
43     }
44
45     public static KeyedInstanceIdentifier<Topology, TopologyKey> createTopologyListPath(final String topologyId) {
46         final InstanceIdentifier<NetworkTopology> networkTopology = InstanceIdentifier.create(NetworkTopology.class);
47         return networkTopology.child(Topology.class, new TopologyKey(new TopologyId(topologyId)));
48     }
49 }