* Moved all l2 forwarding services based on OF to a separate OSGi
[affinity.git] / affinity / api / src / main / java / org / opendaylight / affinity / affinity / SetDeny.java
1 package org.opendaylight.affinity.affinity;
2
3 import javax.xml.bind.annotation.XmlAccessType;
4 import javax.xml.bind.annotation.XmlAccessorType;
5 import javax.xml.bind.annotation.XmlRootElement;
6
7 /**
8  * Represent the action of dropping matched flows. 
9  */
10 @XmlRootElement
11 @XmlAccessorType(XmlAccessType.NONE)
12 public class SetDeny extends AffinityAttribute {
13     private static final long serialVersionUID = 1L;
14
15     public SetDeny() {
16         type = AffinityAttributeType.SET_DENY;
17     }
18 }