ACL services for OS/OVS
[netvirt.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / api / SecurityServicesManager.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  */
9
10 package org.opendaylight.ovsdb.openstack.netvirt.api;
11
12 import org.opendaylight.controller.networkconfig.neutron.NeutronSecurityGroup;
13 import org.opendaylight.ovsdb.schema.openvswitch.Interface;
14
15 /**
16  * Open vSwitch isolates Tenant Networks using VLANs on the Integration Bridge
17  * This class manages the provisioning of these VLANs
18  */
19 public interface SecurityServicesManager {
20     /**
21      * Is port security ready.
22      *
23      * @param intf the intf
24      * @return the boolean
25      */
26     public boolean isPortSecurityReady(Interface intf);
27     /**
28      * Gets security group in port.
29      *
30      * @param intf the intf
31      * @return the security group in port
32      */
33     public NeutronSecurityGroup getSecurityGroupInPort(Interface intf);
34
35 }