All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cybermkd.route.annotation.API Maven / Gradle / Ivy

package com.cybermkd.route.annotation;

import java.lang.annotation.*;

/**
 * Annotation used to mark a resource class.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
public @interface API {
    String value();

    String[] headers() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy