Due to a ransomware attack, the wiki was reverted to a July 2022 version. . We apologize for the lack of a more recent valid backup.
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
public interface FlowRule extends BatchOperationTarget { /** * The FlowRule type is used to determine in which table the flow rule * needs to be put for multi-table support switch. * For single table switch, Default is used. */ public static enum FlowRuleType { /* Default type - used in flow rule for single table switch */ Default, /* Used in flow entry for IP table */ IP, /* Used in flow entry for MPLS table */ MPLS, /* Used in flow entry for ACL table */ ACL } ...... /** * Returns the flow rule type. * * @return flow rule type */ FlowRuleType type(); ....... } |