228bb2c03dff2fa03e4a308cc6c1ef12c1443f69
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / openstack / beans / HostRoute.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.openstack.beans;
22
23
24
25 import javax.xml.bind.annotation.XmlAccessType;
26 import javax.xml.bind.annotation.XmlAccessorType;
27 import javax.xml.bind.annotation.XmlType;
28
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "", propOrder = {
31     "prefix",
32     "nextHop"
33 })
34 public class HostRoute {
35
36         private String prefix;
37         private String nextHop;
38
39         /**
40          * @return the prefix
41          */
42         public String getPrefix() {
43                 return prefix;
44         }
45         /**
46          * @param prefix the prefix to set
47          */
48         public void setPrefix(String prefix) {
49                 this.prefix = prefix;
50         }
51         /**
52          * @return the nextHop
53          */
54         public String getNextHop() {
55                 return nextHop;
56         }
57         /**
58          * @param nextHop the nextHop to set
59          */
60         public void setNextHop(String nextHop) {
61                 this.nextHop = nextHop;
62         }
63
64         @Override
65         public String toString() {
66                 return "Host_route [prefix=" + prefix + ", nextHop=" + nextHop + "]";
67         }
68
69 }