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

com.zandero.rest.annotation.Trace Maven / Gradle / Ivy

The newest version!
package com.zandero.rest.annotation;

import javax.ws.rs.HttpMethod;
import java.lang.annotation.*;

/**
 *
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@HttpMethod("TRACE")
@Documented
public @interface Trace {

	String value() default ""; // @Path to trace if not given in @Path

	String[] produces() default "*/*";

	String[] consumes() default "*/*";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy