
io.github.fallwizard.rabbitmq.mgmt.model.ProducedByRabbit 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;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates that a property is returned by RabbitMQ Management Console and should not be set or expected when
* you instantiate an object manually.
*
* @author Richard Clayton (Berico Technologies)
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.FIELD})
public @interface ProducedByRabbit {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy