package com.github.bingoohuang.springrestclient.annotations; import java.lang.annotation.*; @Documented @Target({ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface FixedRequestParam { String name(); String value() default ""; Class<?> clazz() default void.class; }