VMware GemFire Java API Reference
Class GatewayReceiverConfig
- java.lang.Object
-
- org.apache.geode.cache.configuration.GatewayReceiverConfig
-
- All Implemented Interfaces:
Serializable
@Experimental public class GatewayReceiverConfig extends Object implements Serializable
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="gateway-transport-filter" type="{http://geode.apache.org/schema/cache}class-with-parameters-type" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="start-port" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="end-port" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="bind-address" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="maximum-time-between-pings" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="socket-buffer-size" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="hostname-for-senders" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="manual-start" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringbindAddressprotected StringendPortprotected List<DeclarableType>gatewayTransportFiltersprotected StringhostnameForSendersprotected BooleanmanualStartprotected StringmaximumTimeBetweenPingsprotected StringsocketBufferSizeprotected StringstartPort
-
Constructor Summary
Constructors Constructor Description GatewayReceiverConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBindAddress()Gets the value of the bindAddress property.StringgetEndPort()Gets the value of the endPort property.List<DeclarableType>getGatewayTransportFilters()Gets the value of the gatewayTransportFilters property.StringgetHostnameForSenders()Gets the value of the hostnameForSenders property.StringgetMaximumTimeBetweenPings()Gets the value of the maximumTimeBetweenPings property.StringgetSocketBufferSize()Gets the value of the socketBufferSize property.StringgetStartPort()Gets the value of the startPort property.BooleanisManualStart()Gets the value of the manualStart property.voidsetBindAddress(String value)Sets the value of the bindAddress property.voidsetEndPort(String value)Sets the value of the endPort property.voidsetHostnameForSenders(String value)Sets the value of the hostnameForSenders property.voidsetManualStart(Boolean value)Sets the value of the manualStart property.voidsetMaximumTimeBetweenPings(String value)Sets the value of the maximumTimeBetweenPings property.voidsetSocketBufferSize(String value)Sets the value of the socketBufferSize property.voidsetStartPort(String value)Sets the value of the startPort property.
-
-
-
Field Detail
-
gatewayTransportFilters
protected List<DeclarableType> gatewayTransportFilters
-
startPort
protected String startPort
-
endPort
protected String endPort
-
bindAddress
protected String bindAddress
-
maximumTimeBetweenPings
protected String maximumTimeBetweenPings
-
socketBufferSize
protected String socketBufferSize
-
hostnameForSenders
protected String hostnameForSenders
-
manualStart
protected Boolean manualStart
-
-
Method Detail
-
getGatewayTransportFilters
public List<DeclarableType> getGatewayTransportFilters()
Gets the value of the gatewayTransportFilters property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the gatewayTransportFilters property.For example, to add a new item, do as follows:
getGatewayTransportFilters().add(newItem);
Objects of the following type(s) are allowed in the list
DeclarableType- Returns:
- the
ListofGatewayTransportFiltertypes.
-
getStartPort
public String getStartPort()
Gets the value of the startPort property. possible object isString- Returns:
- the start port.
-
setStartPort
public void setStartPort(String value)
Sets the value of the startPort property. allowed object isString- Parameters:
value- the start port.
-
getEndPort
public String getEndPort()
Gets the value of the endPort property. possible object isString- Returns:
- the end port.
-
setEndPort
public void setEndPort(String value)
Sets the value of the endPort property. allowed object isString- Parameters:
value- the end port.
-
getBindAddress
public String getBindAddress()
Gets the value of the bindAddress property. possible object isString- Returns:
- the bind address.
-
setBindAddress
public void setBindAddress(String value)
Sets the value of the bindAddress property. allowed object isString- Parameters:
value- the bind address.
-
getMaximumTimeBetweenPings
public String getMaximumTimeBetweenPings()
Gets the value of the maximumTimeBetweenPings property. possible object isString- Returns:
- the maximum time between pings.
-
setMaximumTimeBetweenPings
public void setMaximumTimeBetweenPings(String value)
Sets the value of the maximumTimeBetweenPings property. allowed object isString- Parameters:
value- the maximum time between pings.
-
getSocketBufferSize
public String getSocketBufferSize()
Gets the value of the socketBufferSize property. possible object isString- Returns:
- the socket buffer size.
-
setSocketBufferSize
public void setSocketBufferSize(String value)
Sets the value of the socketBufferSize property. allowed object isString- Parameters:
value- the socket buffer size.
-
getHostnameForSenders
public String getHostnameForSenders()
Gets the value of the hostnameForSenders property. possible object isString- Returns:
- the hostname for sender.
-
setHostnameForSenders
public void setHostnameForSenders(String value)
Sets the value of the hostnameForSenders property. allowed object isString- Parameters:
value- the hostname for sender.
-
isManualStart
public Boolean isManualStart()
Gets the value of the manualStart property. possible object isBoolean- Returns:
- true if manual start is enabled, false otherwise.
-
-