VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface DistributionLocatorConfig
-
- All Superinterfaces:
Cloneable,ManagedEntityConfig
@Deprecated public interface DistributionLocatorConfig extends ManagedEntityConfig
Deprecated.as of 7.0 use themanagementpackage insteadDescribes the configuration of aDistributionLocatormanaged by the GemFire administration APIs.A
DistributionLocatorConfigcan be modified using a number of mutator methods until theDistributionLocatorconfigured by this object is started. After that, attempts to modify most attributes in theDistributionLocatorConfigwill result in anIllegalStateExceptionbeing thrown. If you wish to use the sameDistributionLocatorConfigto configure anotherDistributionLocators, a copy of theDistributionLocatorConfigobject can be made by invoking theObject.clone()method.- Since:
- GemFire 4.0
- See Also:
AdminDistributedSystem.addDistributionLocator(),Locator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetBindAddress()Deprecated.Returns the address to which the distribution locator's port is (or will be) bound.PropertiesgetDistributedSystemProperties()Deprecated.Retrieves the properties used to configure the locator's DistributedSystem.intgetPort()Deprecated.Returns the port on which ths distribution locator listens for members to connect.voidsetBindAddress(String bindAddress)Deprecated.Sets the address to which the distribution locator's port is (or will be) bound.voidsetDistributedSystemProperties(Properties props)Deprecated.Sets the properties used to configure the locator's DistributedSystem.voidsetPort(int port)Deprecated.Sets the port on which the distribution locator listens for members to connect.-
Methods inherited from interface org.apache.geode.admin.ManagedEntityConfig
clone, getHost, getProductDirectory, getRemoteCommand, getWorkingDirectory, setHost, setProductDirectory, setRemoteCommand, setWorkingDirectory, validate
-
-
-
-
Method Detail
-
getPort
int getPort()
Deprecated.Returns the port on which ths distribution locator listens for members to connect. There is no default locator port, so a non-default port must be specified.- Returns:
- the port on which the distribution locator listens for members to connect
-
setPort
void setPort(int port)
Deprecated.Sets the port on which the distribution locator listens for members to connect.- Parameters:
port- the port on which the distribution locator listens for members to connect
-
getBindAddress
String getBindAddress()
Deprecated.Returns the address to which the distribution locator's port is (or will be) bound. By default, the bind address isnullmeaning that the port will be bound to all network addresses on the host.- Returns:
- the address to which the distribution locator's port is (or will be) bound
-
setBindAddress
void setBindAddress(String bindAddress)
Deprecated.Sets the address to which the distribution locator's port is (or will be) bound.- Parameters:
bindAddress- the address to which the distribution locator's port is (or will be) bound
-
setDistributedSystemProperties
void setDistributedSystemProperties(Properties props)
Deprecated.Sets the properties used to configure the locator's DistributedSystem.- Parameters:
props- the properties used to configure the locator's DistributedSystem- Since:
- GemFire 5.0
-
getDistributedSystemProperties
Properties getDistributedSystemProperties()
Deprecated.Retrieves the properties used to configure the locator's DistributedSystem.- Returns:
- the properties used to configure the locator's DistributedSystem
- Since:
- GemFire 5.0
-
-