blob: 39ddfe92b4e8cb7d315b1cb90f7c12e46c96988a (
plain) (
tree)
|
|
package com.terminaldweller.doc;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
/** The document controller class. */
@RestController
@RequestMapping(path = "api/v1/doc")
public class DocController {
private final DocService docService;
@Autowired
public DocController(DocService docService) {
this.docService = docService;
}
@GetMapping(path = "{Id}")
public Optional<Doc> getDocs(@PathVariable("Id") Long id) {
return docService.getDocs(id);
}
@PostMapping
@ResponseStatus(HttpStatus.CREATED)
public void postDocs(@RequestBody Doc doc) {
docService.addNewDoc(doc);
}
@DeleteMapping(path = "{Id}")
public void deleteDocs(@PathVariable("Id") Long id) {
docService.deleteDoc(id);
}
@PutMapping(path = "{Id}")
public void updatDoc(@RequestBody Doc doc, @PathVariable("Id") long id) {
docService.updateDoc(doc, id);
}
}
|