yang model revise: neutron.yang
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / INeutronFirewallRuleAware.java
index 1a4c4451eada51e2a8ebeb5f0f043b5bd24eba2c..8c019f9eaf73654244a8af5c23d9a7718d602c23 100644 (file)
@@ -12,7 +12,7 @@ package org.opendaylight.neutron.spi;
  * This interface defines the methods a service that wishes to be aware of Firewall Rules needs to implement
  *
  */
-
+@Deprecated
 public interface INeutronFirewallRuleAware {
 
     /**
@@ -25,16 +25,15 @@ public interface INeutronFirewallRuleAware {
      *            results in the create operation being interrupted and the returned status value reflected in the
      *            HTTP response.
      */
-    public int canCreateNeutronFirewallRule(NeutronFirewallRule firewallRule);
+    int canCreateNeutronFirewallRule(NeutronFirewallRule firewallRule);
 
     /**
      * Services provide this interface method for taking action after a firewallRule has been created
      *
      * @param firewallRule
      *            instance of new Firewall Rule object
-     * @return void
      */
-    public void neutronFirewallRuleCreated(NeutronFirewallRule firewallRule);
+    void neutronFirewallRuleCreated(NeutronFirewallRule firewallRule);
 
     /**
      * Services provide this interface method to indicate if the specified firewallRule can be changed using the specified
@@ -49,16 +48,15 @@ public interface INeutronFirewallRuleAware {
      *            results in the update operation being interrupted and the returned status value reflected in the
      *            HTTP response.
      */
-    public int canUpdateNeutronFirewallRule(NeutronFirewallRule delta, NeutronFirewallRule original);
+    int canUpdateNeutronFirewallRule(NeutronFirewallRule delta, NeutronFirewallRule original);
 
     /**
      * Services provide this interface method for taking action after a firewallRule has been updated
      *
      * @param firewallRule
      *            instance of modified Firewall Rule object
-     * @return void
      */
-    public void neutronFirewallRuleUpdated(NeutronFirewallRule firewallRule);
+    void neutronFirewallRuleUpdated(NeutronFirewallRule firewallRule);
 
     /**
      * Services provide this interface method to indicate if the specified firewallRule can be deleted
@@ -70,14 +68,13 @@ public interface INeutronFirewallRuleAware {
      *            results in the delete operation being interrupted and the returned status value reflected in the
      *            HTTP response.
      */
-    public int canDeleteNeutronFirewallRule(NeutronFirewallRule firewallRule);
+    int canDeleteNeutronFirewallRule(NeutronFirewallRule firewallRule);
 
     /**
      * Services provide this interface method for taking action after a firewallRule has been deleted
      *
      * @param firewallRule
      *            instance of deleted Firewall Rule object
-     * @return void
      */
-    public void neutronFirewallRuleDeleted(NeutronFirewallRule firewallRule);
+    void neutronFirewallRuleDeleted(NeutronFirewallRule firewallRule);
 }