Interface PCFilter.DefinitionStages.WithRemoteIpAddress<ParentT>
-
- All Known Subinterfaces:
PCFilter.Definition<ParentT>,PCFilter.DefinitionStages.Blank<ParentT>,PCFilter.DefinitionStages.WithAttach<ParentT>
- Enclosing interface:
- PCFilter.DefinitionStages
public static interface PCFilter.DefinitionStages.WithRemoteIpAddress<ParentT>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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PCFilter.Definition<ParentT>withRemoteIpAddress(String ipAddress)Set remote IP address to be filtered on.PCFilter.Definition<ParentT>withRemoteIpAddresses(List<String> ipAddresses)Set list of remote IP addresses to be filtered on.PCFilter.Definition<ParentT>withRemoteIpAddressesRange(String startIpAddress, String endIpAddress)Set remote IP addresses range to be filtered on.
-
-
-
Method Detail
-
withRemoteIpAddress
PCFilter.Definition<ParentT> withRemoteIpAddress(String ipAddress)
Set remote IP address to be filtered on.- Parameters:
ipAddress- remote IP address- Returns:
- the next stage
-
withRemoteIpAddressesRange
PCFilter.Definition<ParentT> withRemoteIpAddressesRange(String startIpAddress, String endIpAddress)
Set remote IP addresses range to be filtered on.- Parameters:
startIpAddress- range start IP addressendIpAddress- range end IP address- Returns:
- the next stage
-
withRemoteIpAddresses
PCFilter.Definition<ParentT> withRemoteIpAddresses(List<String> ipAddresses)
Set list of remote IP addresses to be filtered on.- Parameters:
ipAddresses- list of IP addresses- Returns:
- the next stage
-
-