Interface CacheContainerAdmin<C extends CacheContainerAdmin, A extends BasicConfiguration>
- All Known Subinterfaces:
- EmbeddedCacheManagerAdmin,- RemoteCacheManagerAdmin
- All Known Implementing Classes:
- DefaultCacheManagerAdmin,- RemoteCacheManagerAdminImpl
public interface CacheContainerAdmin<C extends CacheContainerAdmin, A extends BasicConfiguration>
Administrative cache container operations.
- Since:
- 9.2
- Author:
- Tristan Tarrant
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumFlags which affect only administrative operations
- 
Method SummaryModifier and TypeMethodDescriptionvoidassignAlias(String aliasName, String cacheName) Assign an alias to a cache.<K,V> BasicCache <K, V> createCache(String name, A configuration) Creates a cache on the container using the specified template.<K,V> BasicCache <K, V> createCache(String name, String template) Creates a cache on the container using the specified template.voidcreateTemplate(String name, A configuration) Creates a template on the container using the provided configuration.<K,V> BasicCache <K, V> getOrCreateCache(String name, A configuration) Retrieves an existing cache or creates one using the specified template if it doesn't exist<K,V> BasicCache <K, V> getOrCreateCache(String name, String template) Retrieves an existing cache or creates one using the specified template if it doesn't existvoidremoveCache(String name) Removes a cache from the cache container.voidremoveTemplate(String name) Removes a template from the cache container.voidupdateConfigurationAttribute(String cacheName, String attribute, String value) Updates a mutable configuration attribute for the given cache.Sets any additionalCacheContainerAdmin.AdminFlags to be used when performing administrative operations.withFlags(CacheContainerAdmin.AdminFlag... flags) Sets any additionalCacheContainerAdmin.AdminFlags to be used when performing administrative operations.
- 
Method Details- 
createCacheCreates a cache on the container using the specified template.- Parameters:
- name- the name of the cache to create
- template- the template to use for the cache. If null, the configuration marked as default on the container will be used
- Returns:
- the cache
- Throws:
- CacheException- if a cache with the same name already exists
 
- 
createCacheCreates a cache on the container using the specified template.- Parameters:
- name- the name of the cache to create
- configuration- the configuration to use for the cache. If null, the configuration marked as default on the container will be used
- Returns:
- the cache
- Throws:
- CacheException- if a cache with the same name already exists
 
- 
getOrCreateCacheRetrieves an existing cache or creates one using the specified template if it doesn't exist- Parameters:
- name- the name of the cache to create
- template- the template to use for the cache. If null, the configuration marked as default on the container will be used
- Returns:
- the cache
 
- 
getOrCreateCacheRetrieves an existing cache or creates one using the specified template if it doesn't exist- Parameters:
- name- the name of the cache to create
- configuration- the configuration to use for the cache. If null, the configuration marked as default on the container will be used
- Returns:
- the cache
 
- 
removeCacheRemoves a cache from the cache container. Any persisted data will be cleared.- Parameters:
- name- the name of the cache to remove
 
- 
withFlagsSets any additionalCacheContainerAdmin.AdminFlags to be used when performing administrative operations. Note: whether an operation supports a certain flag or not is dependent on the configuration and environment. If a flag cannot be honored, the operation will fail with an exception.- Parameters:
- flags-
- Returns:
 
- 
withFlagsSets any additionalCacheContainerAdmin.AdminFlags to be used when performing administrative operations. Note: whether an operation supports a certain flag or not is dependent on the configuration and environment. If a flag cannot be honored, the operation will fail with an exception.- Parameters:
- flags-
- Returns:
 
- 
createTemplate
- 
removeTemplateRemoves a template from the cache container. Any persisted data will be cleared.- Parameters:
- name- the name of the template to remove
 
- 
updateConfigurationAttributeUpdates a mutable configuration attribute for the given cache.- Parameters:
- cacheName- the name of the cache on which the attribute will be updated
- attribute- the path of the attribute we want to change
- value- the new value to apply to the attribute
 
- 
assignAliasAssign an alias to a cache. If the alias was already associated with another cache, the association will be reassigned to the specified cache. If the alias was not associated with any cache, it is created and associated to the specified cache. If the alias was already associated with the specified cache, this operation does nothing.- Parameters:
- aliasName- the name of the alias
- cacheName- the name of the cache to which the alias should be associated
 
 
-