com.rabbitmq.http.client.domain.OwnerPidDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-client Show documentation
Show all versions of http-client Show documentation
Java client for the RabbitMQ HTTP API
The newest version!
package com.rabbitmq.http.client.domain;
/*
"owner_pid_details": {
"name": "127.0.0.1:57130 -> 127.0.0.1:5672",
"peer_host": "127.0.0.1",
"peer_port": 57130
},
"pol
*/
public class OwnerPidDetails {
private String name;
private String peerHost;
private int peerPort;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPeerHost() {
return peerHost;
}
public void setPeerHost(String peerHost) {
this.peerHost = peerHost;
}
public int getPeerPort() {
return peerPort;
}
public void setPeerPort(int peerPort) {
this.peerPort = peerPort;
}
@Override
public String toString() {
return "OwnerPidDetails{" +
"name='" + name + '\'' +
", peerHost='" + peerHost + '\'' +
", peerPort=" + peerPort +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy