Merge "Add test for generated code checking list of dependencies."
[controller.git] / opendaylight / 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 import javax.xml.bind.annotation.XmlAccessType;
17 import javax.xml.bind.annotation.XmlAccessorType;
18 import javax.xml.bind.annotation.XmlElement;
19 import javax.xml.bind.annotation.XmlElementRef;
20 import javax.xml.bind.annotation.XmlElementWrapper;
21 import javax.xml.bind.annotation.XmlRootElement;
22
23 import com.fasterxml.jackson.annotation.JsonIgnore;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import org.opendaylight.controller.sal.core.Edge;
26 import org.opendaylight.controller.sal.core.Property;
27
28 @XmlRootElement
29 @XmlAccessorType(XmlAccessType.NONE)
30 public class EdgeProperties {
31     @XmlElement
32     private Edge edge;
33     @XmlElementRef
34     @XmlElementWrapper
35     @JsonIgnore
36     private Set<Property> properties;
37
38     // JAXB required constructor
39     private EdgeProperties() {
40         this.edge = null;
41         this.properties = null;
42     }
43
44     public EdgeProperties(Edge e, Set<Property> properties) {
45         this.edge = e;
46         this.properties = properties;
47     }
48
49     @JsonProperty(value="properties")
50     public Map<String, Property> getMapProperties() {
51         Map<String, Property> map = new HashMap<String, Property>();
52         for (Property p : properties) {
53             map.put(p.getName(), p);
54         }
55         return map;
56     }
57
58     public void setMapProperties(Map<String, Property> propertiesMap) {
59         this.properties = new HashSet<Property>(propertiesMap.values());
60     }
61
62     public Set<Property> getProperties() {
63         return properties;
64     }
65     public void setProperties(Set<Property> properties) {
66         this.properties = properties;
67     }
68
69     public Edge getEdge() {
70         return edge;
71     }
72
73     public void setEdge(Edge edge) {
74         this.edge = edge;
75     }
76 }