VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface ManagedEntityConfig
-
- All Superinterfaces:
Cloneable
- All Known Subinterfaces:
CacheServerConfig,CacheVmConfig,DistributionLocatorConfig
@Deprecated public interface ManagedEntityConfig extends Cloneable
Deprecated.as of 7.0 use themanagementpackage insteadCommon configuration for all entities that can be managed using the GemFire administration API. Note that once a managed entity has been started, attempts to modify its configuration will cause anIllegalStateExceptionto be thrown.- Since:
- GemFire 4.0
- See Also:
ManagedEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Objectclone()Deprecated.Returns a newManagedEntityConfigwith the same configuration as thisManagedEntityConfig.StringgetHost()Deprecated.Returns the name of the host on which the managed entity runs or will run.StringgetProductDirectory()Deprecated.Returns the name of the GemFire product directory to use when administering the managed entity.StringgetRemoteCommand()Deprecated.Returns the command prefix used to administer a managed entity that is hosted on a remote machine.StringgetWorkingDirectory()Deprecated.Returns the name of the working directory in which the managed entity runs or will run.voidsetHost(String host)Deprecated.Sets the name of the host on which the managed entity will run.voidsetProductDirectory(String dir)Deprecated.Sets the name of the GemFire product directory to use when administering the managed entity.voidsetRemoteCommand(String remoteCommand)Deprecated.Sets the command prefix used to administer a managed entity that is hosted on a remote machine.voidsetWorkingDirectory(String dir)Deprecated.Sets the name of the working directory in which the managed entity will run.voidvalidate()Deprecated.Validates this configuration.
-
-
-
Method Detail
-
getHost
String getHost()
Deprecated.Returns the name of the host on which the managed entity runs or will run.- Returns:
- the name of the host on which the managed entity runs or will run
-
setHost
void setHost(String host)
Deprecated.Sets the name of the host on which the managed entity will run.- Parameters:
host- the name of the host on which the managed entity will run
-
getWorkingDirectory
String getWorkingDirectory()
Deprecated.Returns the name of the working directory in which the managed entity runs or will run.- Returns:
- the name of the working directory in which the managed entity runs or will run.
-
setWorkingDirectory
void setWorkingDirectory(String dir)
Deprecated.Sets the name of the working directory in which the managed entity will run.- Parameters:
dir- the name of the working directory in which the managed entity will run
-
getProductDirectory
String getProductDirectory()
Deprecated.Returns the name of the GemFire product directory to use when administering the managed entity.- Returns:
- the name of the GemFire product directory to use when administering the managed entity
-
setProductDirectory
void setProductDirectory(String dir)
Deprecated.Sets the name of the GemFire product directory to use when administering the managed entity.- Parameters:
dir- the name of the GemFire product directory to use when administering the managed entity
-
getRemoteCommand
String getRemoteCommand()
Deprecated.Returns the command prefix used to administer a managed entity that is hosted on a remote machine. If the remote command isnull(the default value), then the remote command associated with the distributed system will be used.- Returns:
- the command prefix used to administer a managed entity that is hosted on a remote machine
-
setRemoteCommand
void setRemoteCommand(String remoteCommand)
Deprecated.Sets the command prefix used to administer a managed entity that is hosted on a remote machine.- Parameters:
remoteCommand- the command prefix used to administer a managed entity that is hosted on a remote machine
-
validate
void validate()
Deprecated.Validates this configuration.- Throws:
IllegalStateException- If a managed entity cannot be administered using this configuration
-
clone
Object clone() throws CloneNotSupportedException
Deprecated.Returns a newManagedEntityConfigwith the same configuration as thisManagedEntityConfig.- Returns:
- a new
ManagedEntityConfigwith the same configuration as thisManagedEntityConfig - Throws:
CloneNotSupportedException- if the object's class does not support the Cloneable interface
-
-