aboutsummaryrefslogtreecommitdiffstats
path: root/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/PublishFullAddress.java
blob: 3f62897429a6fdcd54a245cfdf6bde0d1aa3dbab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.onap.msb.apiroute.api;

import java.io.Serializable;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class PublishFullAddress implements Serializable {
  private static final long serialVersionUID = 1L;


  private String ip;  

  private String port;
  

  private String publish_protocol;

  public String getPublish_protocol() {
    return publish_protocol;
  }

  public void setPublish_protocol(String publish_protocol) {
    this.publish_protocol = publish_protocol;
  }


  public String getIp() {
      return ip;
  }

  public void setIp(String ip) {
      this.ip = ip;
  }

  public String getPort() {
      return port;
  }

  public void setPort(String port) {
      this.port = port;
  }
  
  public PublishFullAddress(){
    
  }
 
}