northbound: code clean up
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronL2gatewayNorthbound.java
index 20778c120f03fcf686a2bcecf071af44cbf76335..4b9fc1d0a88b0bf826ea03d1c54fc3dcf328b663 100644 (file)
@@ -20,10 +20,8 @@ import javax.ws.rs.Path;
 import javax.ws.rs.PathParam;
 import javax.ws.rs.Produces;
 import javax.ws.rs.QueryParam;
-import javax.ws.rs.core.Context;
 import javax.ws.rs.core.MediaType;
 import javax.ws.rs.core.Response;
-import javax.ws.rs.core.UriInfo;
 import org.codehaus.enunciate.jaxrs.ResponseCode;
 import org.codehaus.enunciate.jaxrs.StatusCodes;
 import org.opendaylight.neutron.spi.INeutronL2gatewayCRUD;
@@ -49,13 +47,10 @@ import org.slf4j.LoggerFactory;
  */
 
 @Path("/l2-gateways")
-public class NeutronL2gatewayNorthbound
+public final class NeutronL2gatewayNorthbound
         extends AbstractNeutronNorthbound<NeutronL2gateway, NeutronL2gatewayRequest, INeutronL2gatewayCRUD> {
     static final Logger logger = LoggerFactory.getLogger(NeutronL2gatewayNorthbound.class);
 
-    @Context
-    UriInfo uriInfo;
-
     private static final String RESOURCE_NAME = "L2gateway";
 
     @Override