blob: 7dffe68c5f727b05375491febead5d282a5e943c [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.resources.process.ProcessStatusResource;
import org.apache.airavata.k8s.api.server.ServerRuntimeException;
import org.apache.airavata.k8s.api.resources.process.ProcessResource;
import org.apache.airavata.k8s.api.server.service.ProcessService;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
/**
* TODO: Class level comments please
*
* @author dimuthu
* @since 1.0.0-SNAPSHOT
*/
@RestController
@RequestMapping(path="/process")
public class ProcessController {
@Resource
private ProcessService processService;
@PostMapping( path = "", consumes = MediaType.APPLICATION_JSON_VALUE)
public long createProcess(@RequestBody ProcessResource resource) {
return processService.create(resource);
}
@PostMapping( path = "{id}/status", consumes = MediaType.APPLICATION_JSON_VALUE)
public long addStatus(@PathVariable("id") long id, @RequestBody ProcessStatusResource resource) {
return processService.addProcessStatus(id, resource);
}
@GetMapping(path = "{id}", produces = MediaType.APPLICATION_JSON_VALUE)
public ProcessResource findProcessById(@PathVariable("id") long id) {
return this.processService.findById(id)
.orElseThrow(() -> new ServerRuntimeException("Process with id " + id + " not found"));
}
}