blob: 43205eac4136ce68a27bdc8482a1712ef478cce7 [file] [log] [blame]
danielbb83ebc2015-10-29 15:13:06 +09001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.openstackswitching.web;
17
sanghoshinf25d2e02015-11-11 23:07:17 +090018/**
19 * Handles Rest API call from Neutron ML2 plugin.
20 */
danielbb83ebc2015-10-29 15:13:06 +090021import org.onosproject.rest.AbstractWebResource;
22import org.slf4j.Logger;
23import org.slf4j.LoggerFactory;
24
25import javax.ws.rs.Consumes;
sanghoshinf25d2e02015-11-11 23:07:17 +090026import javax.ws.rs.DELETE;
danielbb83ebc2015-10-29 15:13:06 +090027import javax.ws.rs.POST;
sanghoshinf25d2e02015-11-11 23:07:17 +090028import javax.ws.rs.PUT;
danielbb83ebc2015-10-29 15:13:06 +090029import javax.ws.rs.Path;
sanghoshinf25d2e02015-11-11 23:07:17 +090030import javax.ws.rs.PathParam;
danielbb83ebc2015-10-29 15:13:06 +090031import javax.ws.rs.Produces;
32import javax.ws.rs.core.MediaType;
33import javax.ws.rs.core.Response;
34import java.io.InputStream;
35
36@Path("subnets")
37public class OpenstackSubnetWebResource extends AbstractWebResource {
38 protected static final Logger log = LoggerFactory
39 .getLogger(OpenstackSubnetWebResource.class);
40
danielbb83ebc2015-10-29 15:13:06 +090041 @POST
42 @Consumes(MediaType.APPLICATION_JSON)
43 @Produces(MediaType.APPLICATION_JSON)
44 public Response createSubnet(InputStream input) {
sanghoshinf25d2e02015-11-11 23:07:17 +090045 return Response.status(Response.Status.OK).build();
danielbb83ebc2015-10-29 15:13:06 +090046 }
47
sanghoshinf25d2e02015-11-11 23:07:17 +090048
49 @PUT
50 @Path("{subnetUUID}")
51 @Produces(MediaType.APPLICATION_JSON)
52 @Consumes(MediaType.APPLICATION_JSON)
53 public Response updateSubnet(@PathParam("id") String id,
54 final InputStream input) {
55 return Response.status(Response.Status.OK).build();
56
57 }
58
59 @DELETE
60 @Path("{subnetUUID}")
61 @Produces(MediaType.APPLICATION_JSON)
62 @Consumes(MediaType.APPLICATION_JSON)
63 public Response deleteSubnet(@PathParam("id") String id,
64 final InputStream input) {
65 return Response.status(Response.Status.OK).build();
66 }
67
68
danielbb83ebc2015-10-29 15:13:06 +090069}