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

org.infinispan.factories.scopes.Scope Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.factories.scopes;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Defines the scope of a component in a cache system.  If not specified, components default to the {@link
 * Scopes#NAMED_CACHE} scope.
 *
 * @author Manik Surtani
 * @see Scopes
 * @since 4.0
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface Scope {
   Scopes value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy