785d54be001c1723a03a81d645f98a1a10aa1ecd
[ovsdb.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.neutron.spi.NeutronSecurityGroup;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ovsdb.rev150105.*;
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(OvsdbTerminationPointAugmentation 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(OvsdbTerminationPointAugmentation intf);
34
35 }