Merge branch 'topic/master/neutron-yang-migration' to branch 'master'
[netvirt.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / translator / NeutronLoadBalancer_SessionPersistence.java
1 /*
2  * Copyright (c) 2015 IBM Corporation and others.  All rights reserved.
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
9 package org.opendaylight.ovsdb.openstack.netvirt.translator;
10
11 import java.io.Serializable;
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 public class NeutronLoadBalancer_SessionPersistence implements Serializable {
21     private static final long serialVersionUID = 1L;
22
23     // See OpenStack Network API v2.0 Reference for description of
24     // annotated attributes
25
26     @XmlElement(name = "cookie_name")
27     String cookieName;
28
29     @XmlElement(name = "type")
30     String type;
31
32     public NeutronLoadBalancer_SessionPersistence() {
33     }
34
35     public NeutronLoadBalancer_SessionPersistence(String cookieName, String type) {
36         this.cookieName = cookieName;
37         this.type = type;
38     }
39
40     public String getCookieName() {
41         return cookieName;
42     }
43
44     public void setCookieName(String cookieName) {
45         this.cookieName = cookieName;
46     }
47
48     public String getType() {
49         return type;
50     }
51
52     public void setType(String type) {
53         this.type = type;
54     }
55 }
56