
io.github.fallwizard.rabbitmq.mgmt.model.federation.QueueFederationOptions 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 QueueFederationOptions extends FederationOptions {
String queue;
public String getQueue() {
return queue;
}
public void setQueue(String queue) {
this.queue = queue;
}
public static Builder builder(){ return new Builder(); }
public static class Builder extends FederationOptionsBuilder {
public Builder() { super(new QueueFederationOptions()); }
public Builder queue(String queueName){
options.setQueue(queueName);
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy