com.seezoon.grpc.annotation.GrpcClient Maven / Gradle / Ivy
The newest version!
package com.seezoon.grpc.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Field-level annotation used for declaring Grpc Client.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
@Inherited
public @interface GrpcClient {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy