431870ba9efdc676e60e923108423156711907dd
[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 = {"prefix", "nextHop"})
31 public class HostRoute {
32
33     private String prefix;
34     private String nextHop;
35
36     /**
37      * @return the prefix
38      */
39     public String getPrefix() {
40         return prefix;
41     }
42
43     /**
44      * @param prefix the prefix to set
45      */
46     public void setPrefix(String prefix) {
47         this.prefix = prefix;
48     }
49
50     /**
51      * @return the nextHop
52      */
53     public String getNextHop() {
54         return nextHop;
55     }
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 }