blob: cb81d3154c157250d89fe874f6e596430d45289a [file] [log] [blame]
Andreas Wundsam55b71ce2013-10-01 19:26:46 -07001package org.projectfloodlight.openflow.types;
2
3public class VlanVidWithMask extends Masked<VlanVid> {
4 private VlanVidWithMask(VlanVid value, VlanVid mask) {
5 super(value, mask);
6 }
7
8 /* a combination of Vlan Vid and mask that matches any tagged packet */
9 public final static VlanVidWithMask ANY_TAGGED = new VlanVidWithMask(VlanVid.PRESENT, VlanVid.PRESENT);
10
11}