Uses of Interface
org.infinispan.config.CloneableConfigurationComponent

Packages that use CloneableConfigurationComponent
org.infinispan.config Cache configuration beans and parsers. 
org.infinispan.loaders This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.bdbje This package contains a CacheStore implementation based on Oracle's BDBJE storage engine. 
org.infinispan.loaders.cassandra This package contains a CacheStore implementation based on persisting to Apache Cassandra 
org.infinispan.loaders.cloud This package contains a CacheStore implementation based on JClouds, which in turn is an abstraction layer to store data on cloud infrastructure providers such as Amazon's S3, RackspaceCloud's CloudFiles, Microsoft's Windows Azure Blob Storage API, and others. 
org.infinispan.loaders.cluster A CacheLoader (not CacheStore) that polls other nodes in the cluster for state. 
org.infinispan.loaders.decorators This package contains loaders and stores, which are used for overflow or persistence. 
org.infinispan.loaders.file Simple filesystem-based CacheStore implementation. 
org.infinispan.loaders.jdbc This package contains a CacheStore implementation based on a JDBC database connection. 
org.infinispan.loaders.jdbc.binary This JDBC CacheStore implementation is optimized for storing binary (non-String) keys in the cache. 
org.infinispan.loaders.jdbc.mixed This is a delegating CacheStore implementation that delegates either to a binary or String based JDBC cache store depending on the key used. 
org.infinispan.loaders.jdbc.stringbased This JDBC CacheStore implementation is optimized for storing String keys in the cache. 
org.infinispan.loaders.jdbm This package contains a CacheStore implementation based on persisting to JDBM. 
org.infinispan.loaders.remote   
 

Uses of CloneableConfigurationComponent in org.infinispan.config
 

Classes in org.infinispan.config that implement CloneableConfigurationComponent
 class AbstractConfigurationBean
          Base superclass of Cache configuration classes that expose some properties that can be changed after the cache is started.
 class AbstractNamedCacheConfigurationBean
          Adds named cache specific features to the AbstractConfigurationBean .
 class AdvancedExternalizerConfig
          Defines custom Externalizers to be registered with marshalling framework
 class CacheLoaderManagerConfig
          Holds the configuration of the cache loader chain.
 class Configuration
          Encapsulates the configuration of a Cache.
static class Configuration.AsyncType
          If this element is present, all communications are asynchronous, in that whenever a thread sends a message sent over the wire, it does not wait for an acknowledgment before returning.
static class Configuration.BooleanAttributeType
           
static class Configuration.ClusteringType
          Defines clustered characteristics of the cache.
static class Configuration.CustomInterceptorPositionType
           
static class Configuration.CustomInterceptorsType
          Configures custom interceptors to be added to the cache.
static class Configuration.DataContainerType
          This element controls the data container for the cache.
static class Configuration.DeadlockDetectionType
          This element configures deadlock detection.
static class Configuration.EvictionType
          This element controls the eviction settings for the cache.
static class Configuration.ExpirationType
          This element controls the default expiration settings for entries in the cache.
static class Configuration.HashType
          Allows fine-tuning of rehashing characteristics.
static class Configuration.InvocationBatching
          Defines whether invocation batching is allowed in this cache instance, and sets up internals accordingly to allow use of this API.
static class Configuration.JmxStatistics
          This element specifies whether cache statistics are gathered and reported via JMX.
static class Configuration.L1Type
          This element configures the L1 cache behavior in 'distributed' caches instances.
static class Configuration.LazyDeserialization
          Deprecated. 
static class Configuration.LockingType
          Defines the local, in-VM locking and concurrency characteristics of the cache.
static class Configuration.QueryConfigurationBean
          Configures indexing of entries in the cache for searching.
static class Configuration.RecoveryType
          Recovery makes sure data in both transactional resource and Infinispan end up in a consistent state.
static class Configuration.StateRetrievalType
          Configures how state is retrieved when a new cache joins the cluster.
static class Configuration.StoreAsBinary
          A mechanism by which data is stored as a binary byte array.
static class Configuration.SyncType
          If this element is present, all communications are synchronous, in that whenever a thread sends a message sent over the wire, it blocks until it receives an acknowledgment from the recipient.
static class Configuration.TransactionType
          Defines transactional (JTA) characteristics of the cache.
static class Configuration.UnsafeType
          Allows you to tune various unsafe or non-standard characteristics.
 class CustomInterceptorConfig
          Holds information about the custom interceptors defined in the configuration file.
 class FluentConfiguration
          Fluent configuration base class.
 class FluentGlobalConfiguration
          Fluent global configuration base class.
 class GlobalConfiguration
          Configuration component that encapsulates the global configuration.
static class GlobalConfiguration.AdvancedExternalizersType
          Configures custom marshallers.
static class GlobalConfiguration.ExecutorFactoryType
           
static class GlobalConfiguration.FactoryClassWithPropertiesType
           
static class GlobalConfiguration.GlobalJmxStatisticsType
          This element specifies whether global statistics are gathered and reported via JMX for all caches under this cache manager.
static class GlobalConfiguration.ScheduledExecutorFactoryType
           
static class GlobalConfiguration.SerializationType
          Serialization and marshalling settings.
static class GlobalConfiguration.ShutdownType
          This element specifies behavior when the JVM running the cache instance shuts down.
static class GlobalConfiguration.TransportType
          This element configures the transport used for network communications across the cluster.
 class GrouperConfiguration
           
 class GroupsConfiguration
           
 

Methods in org.infinispan.config that return CloneableConfigurationComponent
 CloneableConfigurationComponent CloneableConfigurationComponent.clone()
           
 CloneableConfigurationComponent AbstractConfigurationBean.clone()
           
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders
 

Classes in org.infinispan.loaders that implement CloneableConfigurationComponent
 class AbstractCacheLoaderConfig
          Abstract base class for CacheLoaderConfigs.
 class AbstractCacheStoreConfig
          Configures AbstractCacheStore.
 class LockSupportCacheStoreConfig
          Adds configuration support for LockSupportCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.bdbje
 

Classes in org.infinispan.loaders.bdbje that implement CloneableConfigurationComponent
 class BdbjeCacheStoreConfig
          Configures BdbjeCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.cassandra
 

Classes in org.infinispan.loaders.cassandra that implement CloneableConfigurationComponent
 class CassandraCacheStoreConfig
          Configures CassandraCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.cloud
 

Classes in org.infinispan.loaders.cloud that implement CloneableConfigurationComponent
 class CloudCacheStoreConfig
          The cache store config bean for the CloudCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.cluster
 

Classes in org.infinispan.loaders.cluster that implement CloneableConfigurationComponent
 class ClusterCacheLoaderConfig
          Configuration for ClusterCacheLoader.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.decorators
 

Classes in org.infinispan.loaders.decorators that implement CloneableConfigurationComponent
 class AbstractDecoratorConfigurationBean
          Class to aid decorators to be able to fluently modify parent properties.
 class AsyncStoreConfig
          Configuration for the async cache loader.
 class SingletonStoreConfig
          SingletonStore is a delegating cache store used for situations when only one instance in a cluster should interact with the underlying store.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.file
 

Classes in org.infinispan.loaders.file that implement CloneableConfigurationComponent
 class FileCacheStoreConfig
          Configures FileCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.jdbc
 

Classes in org.infinispan.loaders.jdbc that implement CloneableConfigurationComponent
 class AbstractJdbcCacheStoreConfig
          This is an abstract configuration class containing common elements for all JDBC cache store types.
 class AbstractNonDelegatingJdbcCacheStoreConfig
          An abstract configuration for JDBC cache stores which have support for locking.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.jdbc.binary
 

Classes in org.infinispan.loaders.jdbc.binary that implement CloneableConfigurationComponent
 class JdbcBinaryCacheStoreConfig
          Defines available configuration elements for JdbcBinaryCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.jdbc.mixed
 

Classes in org.infinispan.loaders.jdbc.mixed that implement CloneableConfigurationComponent
 class JdbcMixedCacheStoreConfig
          Configuration for JdbcMixedCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.jdbc.stringbased
 

Classes in org.infinispan.loaders.jdbc.stringbased that implement CloneableConfigurationComponent
 class JdbcStringBasedCacheStoreConfig
          Configuration for JdbcStringBasedCacheStore cache store.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.jdbm
 

Classes in org.infinispan.loaders.jdbm that implement CloneableConfigurationComponent
 class JdbmCacheStoreConfig
          Configures JdbmCacheStore.
 

Uses of CloneableConfigurationComponent in org.infinispan.loaders.remote
 

Classes in org.infinispan.loaders.remote that implement CloneableConfigurationComponent
 class RemoteCacheStoreConfig
          Configuration for RemoteCacheStore.
 


-->

Copyright © 2011 JBoss, a division of Red Hat. All Rights Reserved.