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

com.linkedin.restli.server.annotations.TestMethod Maven / Gradle / Ivy

Go to download

Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.

There is a newer version: 27.7.18
Show newest version
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