net.oneandone.neberus.annotation.ApiLabel Maven / Gradle / Ivy
package net.oneandone.neberus.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Defines the name of a REST class or method.
*/
@Target({ ElementType.METHOD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface ApiLabel {
String value();
}