PCFilter.DefinitionStages.WithRemoteIPAddress<ParentT> Interface

Type Parameters

ParentT

public static interface PCFilter.DefinitionStages.WithRemoteIPAddress

Set remote IP Address to be filtered on. Notation: "127.0.0.1" for single address entry. "127.0.0.1-127.0.0.255" for range. "127.0.0.1;127.0.0.5" for multiple entries. Multiple ranges not currently supported. Mixing ranges with multiple entries not currently supported. Default = null.

Method Summary

Modifier and Type Method and Description
abstract Definition<ParentT> withRemoteIPAddress(String ipAddress)

Set remote IP address to be filtered on.

abstract Definition<ParentT> withRemoteIPAddresses(List<String> ipAddresses)

Set list of remote IP addresses to be filtered on.

abstract Definition<ParentT> withRemoteIPAddressesRange(String startIPAddress, String endIPAddress)

Set remote IP addresses range to be filtered on.

Method Details

withRemoteIPAddress

public abstract PCFilter.Definition withRemoteIPAddress(String ipAddress)

Set remote IP address to be filtered on.

Parameters:

ipAddress - remote IP address

Returns:

the next stage

withRemoteIPAddresses

public abstract PCFilter.Definition withRemoteIPAddresses(List ipAddresses)

Set list of remote IP addresses to be filtered on.

Parameters:

ipAddresses - list of IP addresses

Returns:

the next stage

withRemoteIPAddressesRange

public abstract PCFilter.Definition withRemoteIPAddressesRange(String startIPAddress, String endIPAddress)

Set remote IP addresses range to be filtered on.

Parameters:

startIPAddress - range start IP address
endIPAddress - range end IP address

Returns:

the next stage

Applies to