blob: 610bb1ca723967790ad1ac9fd3a4069ba3cc82d5 [file] [log] [blame]
/**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.airavata.k8s.api.server.controller;
import org.apache.airavata.k8s.api.server.ServerRuntimeException;
import org.apache.airavata.k8s.api.resources.compute.ComputeResource;
import org.apache.airavata.k8s.api.server.service.ComputeResourceService;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
* TODO: Class level comments please
*
* @author dimuthu
* @since 1.0.0-SNAPSHOT
*/
@RestController
@RequestMapping(path="/compute")
public class ComputeResourceController {
@Resource
private ComputeResourceService computeResourceService;
@PostMapping( path = "", consumes = MediaType.APPLICATION_JSON_VALUE)
public Long createComputeResource(@RequestBody ComputeResource resource) {
return computeResourceService.create(resource);
}
@GetMapping(path = "", produces = MediaType.APPLICATION_JSON_VALUE)
public List<ComputeResource> getAllComputeResources() {
return this.computeResourceService.getAll();
}
@GetMapping(path = "{id}", produces = MediaType.APPLICATION_JSON_VALUE)
public ComputeResource findComputeResourceById(@PathVariable("id") long id) {
return this.computeResourceService.findById(id)
.orElseThrow(() -> new ServerRuntimeException("Compute resource with id " + id + " cab not be found"));
}
}