PCFilter.DefinitionStages.WithRemotePort<ParentT> Interface

Type Parameters

ParentT

public static interface PCFilter.DefinitionStages.WithRemotePort

Set local port to be filtered on. Notation: "80" for single port entry."80-85" for range. "80;443;" 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> withRemotePort(int port)

Set the remote port to be filtered on.

abstract Definition<ParentT> withRemotePortRange(int startPort, int endPort)

Set the remote port range to be filtered on.

abstract Definition<ParentT> withRemotePorts(List<Integer> ports)

Set the list of remote ports to be filtered on.

Method Details

withRemotePort

public abstract PCFilter.Definition withRemotePort(int port)

Set the remote port to be filtered on.

Parameters:

port - port number

Returns:

the next stage

withRemotePortRange

public abstract PCFilter.Definition withRemotePortRange(int startPort, int endPort)

Set the remote port range to be filtered on.

Parameters:

startPort - range start port number
endPort - range end port number

Returns:

the next stage

withRemotePorts

public abstract PCFilter.Definition withRemotePorts(List ports)

Set the list of remote ports to be filtered on.

Parameters:

ports - list of remote ports

Returns:

the next stage

Applies to