
com.zandero.rest.annotation.Events Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest.vertx Show documentation
Show all versions of rest.vertx Show documentation
JAX-RS REST annotation processor for vert.x verticals
The newest version!
package com.zandero.rest.annotation;
import java.lang.annotation.*;
/**
* List of events
*
* Example:
*
* Events({
* Event(processor = Processor.class),
* Event(processor = SecondProcessor.class)
* })
*/
@Documented
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface Events {
/**
* Array of events to be triggered
* @return array of RestEvents
*/
Event[] value() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy