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

com.sdl.dxa.caching.NoOutputCache Maven / Gradle / Ivy

Go to download

DXA Common project contains framework common classes shared between all other artifacts

There is a newer version: 2.3.7
Show newest version
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