2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
9 package org.opendaylight.controller.switchmanager.northbound;
11 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
18 @XmlRootElement(name="list")
19 @XmlAccessorType(XmlAccessType.NONE)
23 List<NodeProperties> nodeProperties;
29 public Nodes(List<NodeProperties> nodeProperties) {
30 this.nodeProperties = nodeProperties;
33 public List<NodeProperties> getNodeProperties() {
34 return nodeProperties;
37 public void setNodeProperties(List<NodeProperties> nodeProperties) {
38 this.nodeProperties = nodeProperties;