blob: 8fa61a2aa3e845427c447b7a8a74f81bf06b7128 [file] [log] [blame]
Jian Lidaa7d6a2021-04-13 17:22:56 +09001/*
2 * Copyright 2021-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.kubevirtnetworking.api.KubevirtLoadBalancer;
19import org.onosproject.kubevirtnetworking.api.KubevirtLoadBalancerService;
20import org.onosproject.rest.AbstractWebResource;
21import org.slf4j.Logger;
22import org.slf4j.LoggerFactory;
23
24import javax.ws.rs.GET;
25import javax.ws.rs.Path;
26import javax.ws.rs.Produces;
27import javax.ws.rs.core.MediaType;
28import javax.ws.rs.core.Response;
29
30/**
31 * Handles REST API call for kubevirt load balancer.
32 */
33@Path("loadbalancer")
34public class KubevirtLoadBalancerWebResource extends AbstractWebResource {
35
36 protected final Logger log = LoggerFactory.getLogger(getClass());
37 private static final String LOAD_BALANCERS = "loadBalancers";
38
39 /**
40 * Returns set of all load balancers.
41 *
42 * @return 200 OK with set of all load balancers
43 * @onos.rsModel KubevirtLoadBalancers
44 */
45 @GET
46 @Produces(MediaType.APPLICATION_JSON)
47 public Response getLoadBalancers() {
48 KubevirtLoadBalancerService service = get(KubevirtLoadBalancerService.class);
49 final Iterable<KubevirtLoadBalancer> lbs = service.loadBalancers();
50 return ok(encodeArray(KubevirtLoadBalancer.class, LOAD_BALANCERS, lbs)).build();
51 }
52}