org.jboss.resteasy.annotations.cache.NoCache Maven / Gradle / Ivy
The newest version!
package org.jboss.resteasy.annotations.cache;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Set Cache-Control response header of "nocache"
*
* @author Bill Burke
* @version $Revision: 1 $
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface NoCache
{
String[] fields() default {};
}