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

com.github.netty.annotation.NRpcParam Maven / Gradle / Ivy

The newest version!
package com.github.netty.annotation;

import java.lang.annotation.*;

/**
 * RPC parameter note :(used on the client interface, not required on the server)
 */
@Target({ElementType.PARAMETER, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NRpcParam {
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy