io.github.fallwizard.rabbitmq.mgmt.model.ValueWrapper 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;
/**
* Dumb class to correctly model a request body like this:
*
* {"value":{"uri":"amqp://server-name","expires":3600000}}
*
* @author Richard Clayton (Berico Technologies)
*/
public class ValueWrapper {
Object value;
public ValueWrapper(Object value) {
this.value = value;
}
public Object getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy