X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnorthbound%2Ftopology%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Ftopology%2Fnorthbound%2FTopology.java;fp=opendaylight%2Fnorthbound%2Ftopology%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Ftopology%2Fnorthbound%2FTopology.java;h=15548d94286ceb0eb3058e0211cb5c3abcb29024;hb=eb9e1983a0fce7e4a381eff33e40cae957cddf53;hp=bfc86cf34b7fda45fb3ca1869c7d9a87680a62ae;hpb=0cfc417107d5b5b1bafdd7ee1fe8e3ba052d5488;p=controller.git diff --git a/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/Topology.java b/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/Topology.java index bfc86cf34b..15548d9428 100644 --- a/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/Topology.java +++ b/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/Topology.java @@ -19,22 +19,22 @@ import javax.xml.bind.annotation.XmlRootElement; @XmlAccessorType(XmlAccessType.NONE) public class Topology { - @XmlElement - List edgeProperties; - //To satisfy JAXB - private Topology() { - - } - - public Topology(List edgeProperties) { - this.edgeProperties = edgeProperties; - } - - public List getEdgeProperties() { - return edgeProperties; - } - - public void setEdgeProperties(List edgeProperties) { - this.edgeProperties = edgeProperties; - } + @XmlElement + List edgeProperties; + //To satisfy JAXB + private Topology() { + + } + + public Topology(List edgeProperties) { + this.edgeProperties = edgeProperties; + } + + public List getEdgeProperties() { + return edgeProperties; + } + + public void setEdgeProperties(List edgeProperties) { + this.edgeProperties = edgeProperties; + } }