PCFilter.DefinitionStages.WithLocalIP<ParentT> Interface

Type Parameters

ParentT

public static interface PCFilter.DefinitionStages.WithLocalIP

Set local 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> withLocalIPAddress(String ipAddress)

Set local IP address to be filtered on.

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

Set list of local IP addresses to be filtered on.

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

Set local IP addresses range to be filtered on.

Method Details

withLocalIPAddress

public abstract PCFilter.Definition withLocalIPAddress(String ipAddress)

Set local IP address to be filtered on.

Parameters:

ipAddress - local IP address

Returns:

the next stage

withLocalIPAddresses

public abstract PCFilter.Definition withLocalIPAddresses(List ipAddresses)

Set list of local IP addresses to be filtered on.

Parameters:

ipAddresses - list of IP address

Returns:

the next stage

withLocalIPAddressesRange

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

Set local IP addresses range to be filtered on.

Parameters:

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

Returns:

the next stage

Applies to