blob: 65e59010592970ebf94ec522af832f7a5d48a768 [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.kubevirtnode.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("configure")
31public class KubevirtNodeWebResource extends AbstractWebResource {
32
33 private final Logger log = LoggerFactory.getLogger(getClass());
34
35 /**
36 * Creates a set of KubeVirt nodes' config from the JSON input stream.
37 *
38 * @param input KubeVirt nodes JSON input stream
39 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
40 * is malformed
41 * @onos.rsModel KubevirtNode
42 */
43 @POST
44 @Path("node")
45 @Consumes(MediaType.APPLICATION_JSON)
46 @Produces(MediaType.APPLICATION_JSON)
47 public Response dummy(InputStream input) {
48 return Response.ok().build();
49 }
50}