Gemfire JavaDocs
Package org.apache.geode.admin
Interface CacheServerConfig
-
- All Superinterfaces:
CacheVmConfig
,java.lang.Cloneable
,ManagedEntityConfig
@Deprecated public interface CacheServerConfig extends CacheVmConfig
Deprecated.as of 5.7 useCacheVmConfig
instead.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 java.lang.String
getCacheXMLFile()
Deprecated.Returns thecache.xml
declarative caching initialization file used to configure this cache server VM.java.lang.String
getClassPath()
Deprecated.Returns the location(s) of user classes (such as cache loaders) required by the cache server VM.void
setCacheXMLFile(java.lang.String cacheXml)
Deprecated.Sets thecache.xml
declarative caching initialization file used to configure this cache server VM.void
setClassPath(java.lang.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
java.lang.String getCacheXMLFile()
Deprecated.Returns thecache.xml
declarative caching initialization file used to configure this cache server VM. By default, a cache server VM is started without an XML file.- Specified by:
getCacheXMLFile
in interfaceCacheVmConfig
- Returns:
- the
cache.xml
declarative caching initialization file used to configure this cache server VM
-
setCacheXMLFile
void setCacheXMLFile(java.lang.String cacheXml)
Deprecated.Sets thecache.xml
declarative caching initialization file used to configure this cache server VM.- Specified by:
setCacheXMLFile
in interfaceCacheVmConfig
- Parameters:
cacheXml
- thecache.xml
declarative caching initialization file used to configure this cache server VM
-
getClassPath
java.lang.String getClassPath()
Deprecated.Returns the location(s) of user classes (such as cache loaders) required by the cache server VM.- Specified by:
getClassPath
in interfaceCacheVmConfig
- Returns:
- the location(s) of user classes (such as cache loaders) required by the cache server VM
-
setClassPath
void setClassPath(java.lang.String classpath)
Deprecated.Sets the location(s) of user classes (such as cache loaders) required by the cache server VM.- Specified by:
setClassPath
in interfaceCacheVmConfig
- Parameters:
classpath
- the location(s) of user classes (such as cache loaders) required by the cache server VM
-
-