remove irrelevant old JavaDoc from a long bygone era in northbound.api
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronVpnIpSecSiteConnectionsNorthbound.java
index d14e80903c2985fb27d2b752e2dd1bdaec5175d4..208919f828cd0474ec473cecb8e0ac24e51c0def 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;
@@ -30,22 +29,7 @@ import org.opendaylight.neutron.spi.NeutronVpnIpSecSiteConnection;
 
 /**
  * Neutron Northbound REST APIs for VPN IPSEC SiteConnection.<br>
- * This class provides REST APIs for managing neutron VPN IPSEC SiteConnections
- *
- * <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
- *
  */
-
 @Path("/vpn/ipsecsiteconnections")
 public final class NeutronVpnIpSecSiteConnectionsNorthbound
         extends AbstractNeutronNorthbound<NeutronVpnIpSecSiteConnection,
@@ -61,7 +45,6 @@ public final class NeutronVpnIpSecSiteConnectionsNorthbound
     /**
      * Returns a list of all VPN IPSEC SiteConnections.
      */
-
     @GET
     @Produces({ MediaType.APPLICATION_JSON })
     @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_OK, condition = "Operation successful"),
@@ -123,7 +106,6 @@ public final class NeutronVpnIpSecSiteConnectionsNorthbound
     /**
      * Returns a specific VPN IPSEC SiteConnection.
      */
-
     @Path("{connectionID}")
     @GET
     @Produces({ MediaType.APPLICATION_JSON })
@@ -170,7 +152,6 @@ public final class NeutronVpnIpSecSiteConnectionsNorthbound
     /**
      * Deletes a VPN IPSEC SiteConnection.
      */
-
     @Path("{connectionID}")
     @DELETE
     @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_NO_CONTENT, condition = "No Content"),