blob: 1f98048a4eebe6e0f5cf720f13a46f45d497d4f1 [file] [log] [blame]
Jian Li762bc222020-12-19 01:26:57 +09001/*
2 * Copyright 2020-present Open Networking Foundation
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.kubevirtnetworking.web;
17
18import org.onosproject.rest.AbstractWebResource;
19import org.slf4j.Logger;
20import org.slf4j.LoggerFactory;
21
22import javax.ws.rs.Consumes;
23import javax.ws.rs.POST;
24import javax.ws.rs.Path;
25import javax.ws.rs.Produces;
26import javax.ws.rs.core.MediaType;
27import javax.ws.rs.core.Response;
28import java.io.InputStream;
29
30@Path("network")
31public class KubevirtNetworkingWebResource extends AbstractWebResource {
32
33 protected final Logger log = LoggerFactory.getLogger(getClass());
34
35 /**
36 * Creates a network from the JSON input stream.
37 *
38 * @param input network JSON input stream
39 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
40 * is invalid or duplicated network already exists
41 * @onos.rsModel KubevirtNetwork
42 */
43 @POST
44 @Consumes(MediaType.APPLICATION_JSON)
45 @Produces(MediaType.APPLICATION_JSON)
46 public Response dummy(InputStream input) {
47 return Response.ok().build();
48 }
49}