blob: 2e5f123e38b05b4c06883d510c8942134eadbd35 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001package net.floodlightcontroller.firewall;
2
3import org.openflow.protocol.OFMatch;
4
5public class WildcardsPair {
6 public int allow = OFMatch.OFPFW_ALL;
7 public int drop = OFMatch.OFPFW_ALL;
8}