Use neutron from new repo
[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 import org.opendaylight.controller.sal.core.Node;
5
6 /**
7  *  This interface allows egress Port Security flows to be written to devices
8  */
9 public interface EgressAclProvider {
10
11     /**
12      * Program port security ACL.
13      *
14      * @param node the node
15      * @param dpid the dpid
16      * @param segmentationId the segmentation id
17      * @param attachedMac the attached mac
18      * @param localPort the local port
19      * @param securityGroup the security group
20      */
21     public void programPortSecurityACL(Node node, Long dpid, String segmentationId, String attachedMac,
22                                        long localPort, NeutronSecurityGroup securityGroup);
23 }