All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.fallwizard.rabbitmq.mgmt.model.ValueWrapper Maven / Gradle / Ivy

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