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

io.github.quickmsg.common.annotation.Router Maven / Gradle / Ivy

The newest version!
package io.github.quickmsg.common.annotation;

import io.github.quickmsg.common.enums.HttpType;

import java.lang.annotation.*;

/**
 * @author luxurong
 */

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Router {

    String value();

    boolean resource() default false;

    HttpType type() default HttpType.GET;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy