io.github.fallwizard.rabbitmq.mgmt.model.federation.FederationLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbitmq-mgmt Show documentation
Show all versions of rabbitmq-mgmt Show documentation
Manage your RabbitMQ services programmatically
The newest version!
package io.github.fallwizard.rabbitmq.mgmt.model.federation;
/**
* @author Richard Clayton (Berico Technologies)
*/
public class FederationLink {
protected String node;
protected String status;
protected String error;
protected String local_connection;
protected String type;
protected String name;
protected String upstream_name;
protected String vhost;
protected String connection;
protected String uri;
protected String timestamp;
protected LocationChannel local_channel;
public String getNode() {
return node;
}
public String getStatus() {
return status;
}
public String getError(){ return error; }
public String getLocalConnection() {
return local_connection;
}
public String getType() {
return type;
}
public String getName() {
return name;
}
public String getUpstreamName() {
return upstream_name;
}
public String getVirtualHost() {
return vhost;
}
public String getConnection() {
return connection;
}
public String getUri() {
return uri;
}
public String getTimestamp() {
return timestamp;
}
public LocationChannel getLocalChannel() {
return local_channel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy