Remove the remaining netvirt code from ovsdb
[ovsdb.git] / openstack / net-virt / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / translator / iaware / INeutronSecurityRuleAware.java
diff --git a/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/translator/iaware/INeutronSecurityRuleAware.java b/openstack/net-virt/src/main/java/org/opendaylight/ovsdb/openstack/netvirt/translator/iaware/INeutronSecurityRuleAware.java
deleted file mode 100644 (file)
index 6a8eaef..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright (C) 2014 Red Hat, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.ovsdb.openstack.netvirt.translator.iaware;
-
-import org.opendaylight.ovsdb.openstack.netvirt.translator.NeutronSecurityRule;
-
-/**
- * This interface defines the methods required to be aware of Neutron Security Rules
- */
-
-public interface INeutronSecurityRuleAware {
-
-    /**
-     * Services provide this interface method to indicate if the specified security rule can be created
-     *
-     * @param securityRule instance of proposed new Neutron Security Rule object
-     * @return integer
-     * the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
-     * results in the create operation being interrupted and the returned status value reflected in the
-     * HTTP response.
-     */
-    int canCreateNeutronSecurityRule(NeutronSecurityRule securityRule);
-
-    /**
-     * Services provide this interface method for taking action after a security rule has been created
-     *
-     * @param securityRule instance of new Neutron Security Rule object
-     */
-    void neutronSecurityRuleCreated(NeutronSecurityRule securityRule);
-
-    /**
-     * Services provide this interface method to indicate if the specified security rule can be changed using the specified
-     * delta
-     *
-     * @param delta    updates to the security rule object using patch semantics
-     * @param original instance of the Neutron Security Rule object to be updated
-     * @return integer
-     * the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
-     * results in the update operation being interrupted and the returned status value reflected in the
-     * HTTP response.
-     */
-    int canUpdateNeutronSecurityRule(NeutronSecurityRule delta, NeutronSecurityRule original);
-
-    /**
-     * Services provide this interface method for taking action after a security rule has been updated
-     *
-     * @param securityRule instance of modified Neutron Security Rule object
-     */
-    void neutronSecurityRuleUpdated(NeutronSecurityRule securityRule);
-
-    /**
-     * Services provide this interface method to indicate if the specified security rule can be deleted
-     *
-     * @param securityRule instance of the Neutron Security Rule object to be deleted
-     * @return integer
-     * the return value is understood to be a HTTP status code.  A return value outside of 200 through 299
-     * results in the delete operation being interrupted and the returned status value reflected in the
-     * HTTP response.
-     */
-    int canDeleteNeutronSecurityRule(NeutronSecurityRule securityRule);
-
-    /**
-     * Services provide this interface method for taking action after a security rule has been deleted
-     *
-     * @param securityRule instance of deleted Neutron Security Rule object
-     */
-    void neutronSecurityRuleDeleted(NeutronSecurityRule securityRule);
-}