VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface CacheServerConfig
-
- All Superinterfaces:
CacheVmConfig,Cloneable,ManagedEntityConfig
@Deprecated public interface CacheServerConfig extends CacheVmConfig
Deprecated.as of 5.7 useCacheVmConfiginstead.Configuration for a GemFire cache server that is managed by the administration API. The cache server may or may not be running.- Since:
- GemFire 4.0
- See Also:
AdminDistributedSystem.addCacheServer()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetCacheXMLFile()Deprecated.Returns thecache.xmldeclarative caching initialization file used to configure this cache server VM.StringgetClassPath()Deprecated.Returns the location(s) of user classes (such as cache loaders) required by the cache server VM.voidsetCacheXMLFile(String cacheXml)Deprecated.Sets thecache.xmldeclarative caching initialization file used to configure this cache server VM.voidsetClassPath(String classpath)Deprecated.Sets the location(s) of user classes (such as cache loaders) required by the cache server VM.-
Methods inherited from interface org.apache.geode.admin.ManagedEntityConfig
clone, getHost, getProductDirectory, getRemoteCommand, getWorkingDirectory, setHost, setProductDirectory, setRemoteCommand, setWorkingDirectory, validate
-
-
-
-
Method Detail
-
getCacheXMLFile
String getCacheXMLFile()
Deprecated.Returns thecache.xmldeclarative caching initialization file used to configure this cache server VM. By default, a cache server VM is started without an XML file.- Specified by:
getCacheXMLFilein interfaceCacheVmConfig- Returns:
- the
cache.xmldeclarative caching initialization file used to configure this cache server VM
-
setCacheXMLFile
void setCacheXMLFile(String cacheXml)
Deprecated.Sets thecache.xmldeclarative caching initialization file used to configure this cache server VM.- Specified by:
setCacheXMLFilein interfaceCacheVmConfig- Parameters:
cacheXml- thecache.xmldeclarative caching initialization file used to configure this cache server VM
-
getClassPath
String getClassPath()
Deprecated.Returns the location(s) of user classes (such as cache loaders) required by the cache server VM.- Specified by:
getClassPathin interfaceCacheVmConfig- Returns:
- the location(s) of user classes (such as cache loaders) required by the cache server VM
-
setClassPath
void setClassPath(String classpath)
Deprecated.Sets the location(s) of user classes (such as cache loaders) required by the cache server VM.- Specified by:
setClassPathin interfaceCacheVmConfig- Parameters:
classpath- the location(s) of user classes (such as cache loaders) required by the cache server VM
-
-