blob: c91c28c74132fa0eda5c30677006125edb8f229d [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.projectfloodlight.openflow.types;
2
3public class OFVlanVidMatchWithMask extends Masked<OFVlanVidMatch> {
4 private OFVlanVidMatchWithMask(OFVlanVidMatch value, OFVlanVidMatch mask) {
5 super(value, mask);
6 }
7
8 /* a combination of Vlan Vid and mask that matches any tagged packet */
9 public final static OFVlanVidMatchWithMask ANY_TAGGED = new OFVlanVidMatchWithMask(OFVlanVidMatch.PRESENT, OFVlanVidMatch.PRESENT);
10}