X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=northbound-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fneutron%2Fnorthbound%2Fapi%2FNeutronLoadBalancerListenerNorthbound.java;h=6c937d7570a2497ae38956be20a6214369d8416a;hb=326cc64c2f5a43e6a3de3e4580851eb7ed0784bf;hp=5f2f869aa91230c80e9d6239c4e1a0a0716bf8dc;hpb=a0cb60407d1005943712771961b56e29ffaf56da;p=neutron.git diff --git a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronLoadBalancerListenerNorthbound.java b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronLoadBalancerListenerNorthbound.java index 5f2f869aa..6c937d757 100644 --- a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronLoadBalancerListenerNorthbound.java +++ b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronLoadBalancerListenerNorthbound.java @@ -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,21 +27,7 @@ import org.opendaylight.neutron.spi.INeutronLoadBalancerListenerCRUD; import org.opendaylight.neutron.spi.NeutronLoadBalancerListener; /** - * Neutron Northbound REST APIs for LoadBalancerListener Policies.
- * This class provides REST APIs for managing neutron LoadBalancerListener Policies - * - *
- *
- * Authentication scheme : HTTP Basic
- * Authentication realm : opendaylight
- * Transport : HTTP and HTTPS
- *
- * 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.
- * More info : - * http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration - * + * Neutron Northbound REST APIs for LoadBalancerListener Policies. */ @Path("/lbaas/listeners") public final class NeutronLoadBalancerListenerNorthbound extends AbstractNeutronNorthbound fields, @@ -112,7 +96,6 @@ public final class NeutronLoadBalancerListenerNorthbound extends AbstractNeutron /** * Returns a specific LoadBalancerListener. */ - @Path("{loadBalancerListenerID}") @GET @Produces({ MediaType.APPLICATION_JSON }) @@ -130,7 +113,6 @@ public final class NeutronLoadBalancerListenerNorthbound extends AbstractNeutron /** * Creates new LoadBalancerListener. */ - @POST @Produces({ MediaType.APPLICATION_JSON }) @Consumes({ MediaType.APPLICATION_JSON }) @@ -158,7 +140,6 @@ public final class NeutronLoadBalancerListenerNorthbound extends AbstractNeutron /** * Deletes a LoadBalancerListener. */ - @Path("{loadBalancerListenerID}") @DELETE @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_NO_CONTENT, condition = "No Content"),