remove irrelevant old JavaDoc from a long bygone era in northbound.api
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronFirewallRulesNorthbound.java
index 4627e47f108ed9bf988e0d1f5bd3e84009c8eecd..75e1dcbbfee3e29bb53259e70f1f569ceab8de71 100644 (file)
@@ -5,7 +5,6 @@
  * 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.neutron.northbound.api;
 
 import java.net.HttpURLConnection;
@@ -28,25 +27,12 @@ import org.opendaylight.neutron.spi.INeutronFirewallRuleCRUD;
 import org.opendaylight.neutron.spi.NeutronFirewallRule;
 
 /**
- * Neutron Northbound REST APIs for Firewall Rule.<br>
- * This class provides REST APIs for managing neutron Firewall Rule
- *
- * <br>
- * <br>
- * Authentication scheme : <b>HTTP Basic</b><br>
- * Authentication realm : <b>opendaylight</b><br>
- * Transport : <b>HTTP and HTTPS</b><br>
- * <br>
- * HTTPS Authentication is disabled by default. Administrator can enable it in
- * tomcat-server.xml after adding a proper keystore / SSL certificate from a
- * trusted authority.<br>
- * More info :
- * http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration
+ * Neutron Northbound REST APIs for Firewall Rule.
  */
-
 @Path("fw/firewall_rules")
 public final class NeutronFirewallRulesNorthbound
         extends AbstractNeutronNorthbound<NeutronFirewallRule, NeutronFirewallRuleRequest, INeutronFirewallRuleCRUD> {
+
     private static final String RESOURCE_NAME = "Firewall Rule";
 
     @Override
@@ -133,7 +119,6 @@ public final class NeutronFirewallRulesNorthbound
     /**
      * Returns a specific Firewall Rule.
      */
-
     @Path("{firewallRuleUUID}")
     @GET
     @Produces({ MediaType.APPLICATION_JSON })
@@ -151,7 +136,6 @@ public final class NeutronFirewallRulesNorthbound
     /**
      * Creates new Firewall Rule.
      */
-
     @POST
     @Produces({ MediaType.APPLICATION_JSON })
     @Consumes({ MediaType.APPLICATION_JSON })
@@ -179,7 +163,6 @@ public final class NeutronFirewallRulesNorthbound
     /**
      * Deletes a Firewall Rule.
      */
-
     @Path("{firewallRuleUUID}")
     @DELETE
     @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_NO_CONTENT, condition = "No Content"),