Initial code import
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / openo / msb / api / Node.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 import java.util.Date;\r
22 \r
23 import com.fasterxml.jackson.annotation.JsonIgnore;\r
24 import com.fasterxml.jackson.databind.annotation.JsonSerialize;\r
25 \r
26 public class Node implements Serializable {\r
27     private static final long serialVersionUID = 1L;\r
28 \r
29     @ApiModelProperty(required = true)\r
30     private String ip;\r
31     \r
32     @ApiModelProperty(required = true)\r
33     private String port;\r
34     \r
35     private int ttl=-1;\r
36   \r
37 \r
38    \r
39 \r
40     public String getIp() {\r
41         return ip;\r
42     }\r
43 \r
44     public void setIp(String ip) {\r
45         this.ip = ip;\r
46     }\r
47 \r
48     public String getPort() {\r
49         return port;\r
50     }\r
51 \r
52     public void setPort(String port) {\r
53         this.port = port;\r
54     }\r
55 \r
56     public int getTtl() {\r
57         return ttl;\r
58     }\r
59 \r
60     public void setTtl(int ttl) {\r
61         this.ttl = ttl;\r
62     }\r
63 \r
64     public Node(){\r
65         \r
66     }\r
67     \r
68     public Node(String ip,String port,int ttl){\r
69         this.ip = ip;\r
70         this.port = port;\r
71         this.ttl = ttl;\r
72     }\r
73     \r
74     \r
75 }\r