
com.sdl.dxa.caching.NoOutputCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dxa-common Show documentation
Show all versions of dxa-common Show documentation
DXA Common project contains framework common classes shared between all other artifacts
package com.sdl.dxa.caching;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotates types that should never be cached in the output cache.
*
*/
@Target({ElementType.ANNOTATION_TYPE, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface NoOutputCache {
/**
* Qualifier of the annotated model to be used as a one-to-one identifier of the type.
*
* @return alias aka qualifier of the annotated model
*/
String qualifier() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy