Squashed commit of the following:
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / EgressAclProvider.java
1 package org.opendaylight.ovsdb.openstack.netvirt.api;
2
3 import org.opendaylight.neutron.spi.NeutronSecurityGroup;
4
5 /**
6  *  This interface allows egress Port Security flows to be written to devices
7  */
8 public interface EgressAclProvider {
9
10     /**
11      * Program port security ACL.
12      *
13      * @param node the node
14      * @param dpid the dpid
15      * @param segmentationId the segmentation id
16      * @param attachedMac the attached mac
17      * @param localPort the local port
18      * @param securityGroup the security group
19      */
20     public void programPortSecurityACL(Long dpid, String segmentationId, String attachedMac,
21                                        long localPort, NeutronSecurityGroup securityGroup);
22 }