1. Adjust the directory hierarchy
[msb/apigateway.git] / msb-core / apiroute / apiroute-service / src / main / java / org / openo / msb / api / RouteServer.java
1 /**\r
2 * Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)\r
3 *\r
4 * Licensed under the Apache License, Version 2.0 (the "License");\r
5 * you may not use this file except in compliance with the License.\r
6 * You may obtain a copy of the License at\r
7 *\r
8 * http://www.apache.org/licenses/LICENSE-2.0\r
9 *\r
10 * Unless required by applicable law or agreed to in writing, software\r
11 * distributed under the License is distributed on an "AS IS" BASIS,\r
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 * See the License for the specific language governing permissions and\r
14 * limitations under the License.\r
15 */\r
16 package org.openo.msb.api;\r
17 \r
18 import io.swagger.annotations.ApiModelProperty;\r
19 \r
20 import java.io.Serializable;\r
21 \r
22 \r
23 public class RouteServer implements Serializable{\r
24         private static final long serialVersionUID = 1L;\r
25          @ApiModelProperty(required = true)\r
26         private String ip;\r
27          \r
28          @ApiModelProperty(required = true) \r
29         private String port;\r
30         private int weight=0;\r
31 \r
32         public String getIp() {\r
33                 return ip;\r
34         }\r
35 \r
36         public void setIp(String ip) {\r
37                 this.ip = ip;\r
38         }\r
39 \r
40         \r
41 \r
42         public int getWeight() {\r
43                 return weight;\r
44         }\r
45 \r
46         public void setWeight(int weight) {\r
47                 this.weight = weight;\r
48         }\r
49         \r
50         public RouteServer(){\r
51                 \r
52         }\r
53         \r
54         public RouteServer(String ip,String port){\r
55                 this.ip=ip;\r
56                 this.port=port;\r
57                 this.weight=0;\r
58         }\r
59 \r
60     public String getPort() {\r
61         return port;\r
62     }\r
63 \r
64     public void setPort(String port) {\r
65         this.port = port;\r
66     }\r
67 \r
68 }\r