| Package | Description |
|---|---|
| com.hazelcast.config.properties |
This package contains the public API for properties defined in the XML configuration.
|
| com.hazelcast.spi.discovery |
This package contains the public SPI for vendors and users to implement their
custom node / IP discovery strategy.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SimplePropertyDefinition
Simple immutable implementation of
PropertyDefinition for convenience of implementors. |
| Modifier and Type | Method and Description |
|---|---|
Collection<PropertyDefinition> |
DiscoveryStrategyFactory.getConfigurationProperties()
Returns a set of the expected configuration properties.
|
| Modifier and Type | Method and Description |
|---|---|
protected <T extends Comparable> |
AbstractDiscoveryStrategy.getOrDefault(PropertyDefinition property,
T defaultValue)
Returns the value of the requested
PropertyDefinition if available in the
declarative or programmatic configuration (XML or Config API), otherwise it will
return the given defaultValue. |
protected <T extends Comparable> |
AbstractDiscoveryStrategy.getOrDefault(String prefix,
PropertyDefinition property,
T defaultValue)
Returns the value of the requested
PropertyDefinition if available in the
declarative or programmatic configuration (XML or Config API), can be found in the
system's environment, or passed as a JVM property. |
protected <T extends Comparable> |
AbstractDiscoveryStrategy.getOrNull(PropertyDefinition property)
Returns the value of the requested
PropertyDefinition if available in the
declarative or programmatic configuration (XML or Config API), otherwise it will
return null. |
protected <T extends Comparable> |
AbstractDiscoveryStrategy.getOrNull(String prefix,
PropertyDefinition property)
Returns the value of the requested
PropertyDefinition if available in the
declarative or programmatic configuration (XML or Config API), can be found in the
system's environment, or passed as a JVM property. |
Copyright © 2016. All Rights Reserved.