@Documented
 @Retention(value=RUNTIME)
 @Target(value={TYPE,METHOD})
 @Inherited
public @interface RabbitProperties
| Modifier and Type | Optional Element and Description | 
|---|---|
| RabbitProperty[] | valueThis allows you to have multiple @RabbitProperty annotations set at the class level with Java and Groovy. | 
public abstract RabbitProperty[] value
 @RabbitProperties({
      @RabbitProperty(name="userId",value="jsmith"),
      @RabbitProperty(name="correlationId",value="123")
 })