io.dinject.controller.Patch Maven / Gradle / Ivy
package io.dinject.controller;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Marks a method that handles HTTP PATCH requests.
*/
@Target(value = METHOD)
@Retention(value = RUNTIME)
@HttpMethod(value = "PATCH")
public @interface Patch {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy