Interface PCFilter.DefinitionStages.WithLocalIP<ParentT>

Type Parameters:
ParentT - the stage of the parent definition to return to after attaching this definition
All Known Subinterfaces:
PCFilter.Definition<ParentT>, PCFilter.DefinitionStages.Blank<ParentT>, PCFilter.DefinitionStages.WithAttach<ParentT>
Enclosing interface:
PCFilter.DefinitionStages

public static interface PCFilter.DefinitionStages.WithLocalIP<ParentT>
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 Details

    • withLocalIpAddress

      PCFilter.Definition<ParentT> withLocalIpAddress(String ipAddress)
      Set local IP address to be filtered on.
      Parameters:
      ipAddress - local IP address
      Returns:
      the next stage
    • withLocalIpAddressesRange

      PCFilter.Definition<ParentT> 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
    • withLocalIpAddresses

      PCFilter.Definition<ParentT> withLocalIpAddresses(List<String> ipAddresses)
      Set list of local IP addresses to be filtered on.
      Parameters:
      ipAddresses - list of IP address
      Returns:
      the next stage