Divide the MSB source codes into two repos
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / onap / msb / apiroute / api / PublishFullAddress.java
1 package org.onap.msb.apiroute.api;
2
3 import java.io.Serializable;
4
5 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
6
7 @JsonIgnoreProperties(ignoreUnknown = true)
8 public class PublishFullAddress implements Serializable {
9   private static final long serialVersionUID = 1L;
10
11
12   private String ip;  
13
14   private String port;
15   
16
17   private String publish_protocol;
18
19   public String getPublish_protocol() {
20     return publish_protocol;
21   }
22
23   public void setPublish_protocol(String publish_protocol) {
24     this.publish_protocol = publish_protocol;
25   }
26
27
28   public String getIp() {
29       return ip;
30   }
31
32   public void setIp(String ip) {
33       this.ip = ip;
34   }
35
36   public String getPort() {
37       return port;
38   }
39
40   public void setPort(String port) {
41       this.port = port;
42   }
43   
44   public PublishFullAddress(){
45     
46   }
47  
48 }