BUG-2218: Keep existing link augmentations during discovery process
[controller.git] / opendaylight / adsal / northbound / topology / src / main / java / org / opendaylight / controller / topology / northbound / EdgeProperties.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.topology.northbound;
11
12 import java.util.HashMap;
13 import java.util.HashSet;
14 import java.util.Map;
15 import java.util.Set;
16
17 import javax.xml.bind.annotation.XmlAccessType;
18 import javax.xml.bind.annotation.XmlAccessorType;
19 import javax.xml.bind.annotation.XmlElement;
20 import javax.xml.bind.annotation.XmlElementWrapper;
21 import javax.xml.bind.annotation.XmlRootElement;
22
23 import org.opendaylight.controller.sal.core.Edge;
24 import org.opendaylight.controller.sal.core.Property;
25
26 import com.fasterxml.jackson.annotation.JsonIgnore;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28
29 @XmlRootElement
30 @XmlAccessorType(XmlAccessType.NONE)
31 public class EdgeProperties {
32     @XmlElement
33     private Edge edge;
34
35     @XmlElement(name="property")
36     @XmlElementWrapper
37     @JsonIgnore
38     private Set<Property> properties;
39
40     // JAXB required constructor
41     private EdgeProperties() {
42         this.edge = null;
43         this.properties = null;
44     }
45
46     public EdgeProperties(Edge e, Set<Property> properties) {
47         this.edge = e;
48         this.properties = properties;
49     }
50
51     @JsonProperty(value="properties")
52     public Map<String, Property> getMapProperties() {
53         Map<String, Property> map = new HashMap<String, Property>();
54         for (Property p : properties) {
55             map.put(p.getName(), p);
56         }
57         return map;
58     }
59
60     public void setMapProperties(Map<String, Property> propertiesMap) {
61         this.properties = new HashSet<Property>(propertiesMap.values());
62     }
63
64     public Set<Property> getProperties() {
65         return properties;
66     }
67     public void setProperties(Set<Property> properties) {
68         this.properties = properties;
69     }
70
71     public Edge getEdge() {
72         return edge;
73     }
74
75     public void setEdge(Edge edge) {
76         this.edge = edge;
77     }
78 }