Modify Example code
[msb/java-sdk.git] / src / main / java / org / onap / msb / sdk / discovery / entity / Node.java
1 /*******************************************************************************
2  * Copyright 2017 ZTE, Inc. and others.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  * 
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * 
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  ******************************************************************************/
14 package org.onap.msb.sdk.discovery.entity;
15
16 import java.io.Serializable;
17
18 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
19
20 @JsonIgnoreProperties(ignoreUnknown = true)
21 public class Node implements Serializable {
22   private static final long serialVersionUID = 1L;
23
24   private String ip;
25
26   private String port;
27
28   private String ttl = "";
29
30
31   public String getIp() {
32     return ip;
33   }
34
35   public void setIp(String ip) {
36     this.ip = ip;
37   }
38
39   public String getPort() {
40     return port;
41   }
42
43   public void setPort(String port) {
44     this.port = port;
45   }
46
47   public String getTtl() {
48     return ttl;
49   }
50
51   public void setTtl(String ttl) {
52     this.ttl = ttl;
53   }
54
55   @Override
56   public String toString() {
57     // TODO Auto-generated method stub
58     return (new StringBuilder().append(ip).append(":").append(port).append("  ttl:").append(ttl))
59         .toString();
60   }
61
62 }