javax.ws.rs.Encoded Maven / Gradle / Ivy
/*
* Encoded.java
*
* Created on June 29, 2007, 11:40 AM
*
*/
package javax.ws.rs;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Disables automatic decoding of QueryParam, UriParam and MatrixParam values.
* Using this annotation on a method will disable decoding for all parameters.
* Using this annotation on a class will disable decoding for all parameters of
* all methods.
*
* @see QueryParam
* @see MatrixParam
* @see UriParam
*
*/
@Target({ElementType.PARAMETER, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Encoded {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy