Ejemplo n.º 1
0
 public PortForwardingRuleTO(PortForwardingRule rule, String srcVlanTag, String srcIp) {
   super(rule, srcVlanTag, srcIp);
   this.dstIp = rule.getDestinationIpAddress().addr();
   this.dstPortRange = new int[] {rule.getDestinationPortStart(), rule.getDestinationPortEnd()};
 }