router.fu.annotations.Routes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of router-fu-annotations Show documentation
Show all versions of router-fu-annotations Show documentation
Annotations for defining a router
package router.fu.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* The annotation that contains the {@link Route} annotations.
* This is not typically used but only used by virtual of repeatable annotations.
*/
@Documented
@Target( ElementType.TYPE )
public @interface Routes
{
/**
* Return the contained route annotations.
*
* @return the contained route annotations.
*/
Route[] value();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy