management
package instead@Deprecated public interface ManagedEntityConfig extends Cloneable
IllegalStateException
to be thrown.ManagedEntity
Modifier and Type | Method and Description |
---|---|
Object |
clone()
Deprecated.
Returns a new
ManagedEntityConfig with the same configuration as this
ManagedEntityConfig . |
String |
getHost()
Deprecated.
Returns the name of the host on which the managed entity runs or will run.
|
String |
getProductDirectory()
Deprecated.
Returns the name of the GemFire product directory to use when administering the managed entity.
|
String |
getRemoteCommand()
Deprecated.
Returns the command prefix used to administer a managed entity that is hosted on a remote
machine.
|
String |
getWorkingDirectory()
Deprecated.
Returns the name of the working directory in which the managed entity runs or will run.
|
void |
setHost(String host)
Deprecated.
Sets the name of the host on which the managed entity will run.
|
void |
setProductDirectory(String dir)
Deprecated.
Sets the name of the GemFire product directory to use when administering the managed entity.
|
void |
setRemoteCommand(String remoteCommand)
Deprecated.
Sets the command prefix used to administer a managed entity that is hosted on a remote machine.
|
void |
setWorkingDirectory(String dir)
Deprecated.
Sets the name of the working directory in which the managed entity will run.
|
void |
validate()
Deprecated.
Validates this configuration.
|
String getHost()
void setHost(String host)
host
- the name of the host on which the managed entity will runString getWorkingDirectory()
void setWorkingDirectory(String dir)
dir
- the name of the working directory in which the managed entity will runString getProductDirectory()
void setProductDirectory(String dir)
dir
- the name of the GemFire product directory to use when administering the managed
entityString getRemoteCommand()
null
(the default value), then the remote
command associated with the distributed
system will be used.void setRemoteCommand(String remoteCommand)
remoteCommand
- the command prefix used to administer a managed entity that is hosted on a
remote machinevoid validate()
IllegalStateException
- If a managed entity cannot be administered using this
configurationObject clone() throws CloneNotSupportedException
ManagedEntityConfig
with the same configuration as this
ManagedEntityConfig
.ManagedEntityConfig
with the same configuration as this
ManagedEntityConfig
CloneNotSupportedException
- if the object's class does not support the Cloneable
interface