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

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

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.factories.scopes;

/**
 * The different scopes that can be declared for a component.
 *
 * 

Must be kept in sync with {@code org.infinispan.factories.impl.Scopes}

* * @author Manik Surtani * @see Scope * @since 4.0 */ public enum Scopes { /** * A single instance of the component is shared by all the caches. */ GLOBAL, /** * Every cache uses a separate instance of the component. */ NAMED_CACHE, /** * The component is not cached between requests, but a subclass may be either {@code GLOBAL} or {@code NAMED_CACHE}. */ NONE }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy