remove irrelevant old JavaDoc from a long bygone era in northbound.api
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronVpnServicesNorthbound.java
index b49a049dfc00654c15f47b2a5828a3916d311af1..fec9fed615d543a65a96bbc2aee064add6bc1a24 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;
@@ -29,23 +28,8 @@ import org.opendaylight.neutron.spi.INeutronVpnServiceCRUD;
 import org.opendaylight.neutron.spi.NeutronVpnService;
 
 /**
- * Neutron Northbound REST APIs for VPN Service.<br>
- * This class provides REST APIs for managing neutron VPN Services
- *
- * <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 VPN Service.
  */
-
 @Path("/vpn/vpnservices")
 public final class NeutronVpnServicesNorthbound
         extends AbstractNeutronNorthbound<NeutronVpnService, NeutronVpnServiceRequest, INeutronVpnServiceCRUD> {
@@ -60,7 +44,6 @@ public final class NeutronVpnServicesNorthbound
     /**
      * Returns a list of all VPN Services.
      */
-
     @GET
     @Produces({ MediaType.APPLICATION_JSON })
     @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_OK, condition = "Operation successful"),
@@ -109,7 +92,6 @@ public final class NeutronVpnServicesNorthbound
     /**
      * Returns a specific VPN Service.
      */
-
     @Path("{serviceID}")
     @GET
     @Produces({ MediaType.APPLICATION_JSON })
@@ -154,7 +136,6 @@ public final class NeutronVpnServicesNorthbound
     /**
      * Deletes a VPN Service.
      */
-
     @Path("{serviceID}")
     @DELETE
     @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_NO_CONTENT, condition = "No Content"),