Mass remove trailing spaces
[lispflowmapping.git] / mappingservice / northbound / src / main / java / org / opendaylight / lispflowmapping / northbound / AuthKeyNB.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. 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 package org.opendaylight.lispflowmapping.northbound;
9
10 import javax.xml.bind.annotation.XmlAccessType;
11 import javax.xml.bind.annotation.XmlAccessorType;
12 import javax.xml.bind.annotation.XmlElement;
13 import javax.xml.bind.annotation.XmlRootElement;
14
15 import org.opendaylight.lispflowmapping.type.lisp.address.LispAddressGeneric;
16
17 @XmlRootElement(name="AuthKeyNB")
18 @XmlAccessorType(XmlAccessType.NONE)
19
20 public class AuthKeyNB {
21
22
23         @XmlElement
24         String key;
25
26         @XmlElement
27         int maskLength;
28
29         @XmlElement
30         LispAddressGeneric address;
31
32         public String getKey() {
33                 return key;
34         }
35
36         public void setKey(String key) {
37                 this.key = key;
38         }
39
40         public int getMaskLength() {
41                 return maskLength;
42         }
43
44         public void setMaskLength(int maskLength) {
45                 this.maskLength = maskLength;
46         }
47
48         public LispAddressGeneric getAddress() {
49                 return address;
50         }
51
52         public void setAddress(LispAddressGeneric address) {
53                 this.address = address;
54         }
55
56
57
58
59
60
61
62 }