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

io.dinject.controller.Put Maven / Gradle / Ivy

There is a newer version: 1.22
Show newest version
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 PUT requests.
 */
@Target(value=METHOD)
@Retention(value=RUNTIME)
@HttpMethod(value="PUT")
public @interface Put {
  String value() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy