Merge "BUG 1001 Failing test - RestGetOperationTest.getStreamsTest"
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / northbound / NeutronPageLink.java
1 /*
2  * Copyright (C) 2014 Hewlett-Packard Development Company L.P
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  * Authors : Dave Tucker
9  */
10
11 package org.opendaylight.controller.networkconfig.neutron.northbound;
12
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;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20
21 public class NeutronPageLink {
22
23     @XmlElement(name="ref")
24     String ref;
25
26     @XmlElement (name="href")
27     String href;
28
29     public String getRef() {
30         return ref;
31     }
32
33     public void setRef(String ref) {
34         this.ref = ref;
35     }
36
37     public String getHref() {
38         return href;
39     }
40
41     public void setHref(String href) {
42         this.href = href;
43     }
44 }