com.linkedin.restli.server.annotations.TestMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restli-server Show documentation
Show all versions of restli-server Show documentation
Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.
package com.linkedin.restli.server.annotations;
import com.linkedin.restli.restspec.RestSpecAnnotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marks a rest.li method as test only.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@RestSpecAnnotation(name = "testMethod", skipDefault = true)
public @interface TestMethod
{
String doc() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy