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

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

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

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

/**
 * Delete HTTP method alternative
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@HttpMethod("DELETE")
@Documented
public @interface Delete {

    String value() default ""; // same as @Path

    String[] produces() default "*/*"; // same as @Produces

    String[] consumes() default "*/*"; // same as @Consumes
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy