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

tech.simter.rest.jaxrs.CreatedStatus Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package tech.simter.rest.jaxrs;

import javax.ws.rs.NameBinding;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Set the response status to {@link javax.ws.rs.core.Response.Status#CREATED} by annotation.
 *
 * @author RJ
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@NameBinding
@Retention(RetentionPolicy.RUNTIME)
public @interface CreatedStatus {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy