feat(project): add ProjectController, Service, Mapper, and DTO
This commit is contained in:
parent
8c275ab443
commit
6ca01de613
@ -0,0 +1,38 @@
|
||||
package de.szut.lf8_starter.project;
|
||||
|
||||
import de.szut.lf8_starter.project.dto.ProjectGetDto;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.media.Content;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
||||
import io.swagger.v3.oas.annotations.responses.ApiResponses;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@RestController
|
||||
@RequestMapping(value = "projects")
|
||||
public class ProjectController {
|
||||
private final ProjectService service;
|
||||
private final ProjectMapper projectMapper;
|
||||
public ProjectController(ProjectService service, ProjectMapper projectMapper) {
|
||||
this.service = service;
|
||||
this.projectMapper = projectMapper;
|
||||
}
|
||||
|
||||
@Operation(summary = "returns all projects")
|
||||
@ApiResponses(value = {
|
||||
@ApiResponse(responseCode = "200", description = "all projects",
|
||||
content = {@Content(mediaType = "application/json",
|
||||
schema = @Schema(implementation = ProjectGetDto.class))}),
|
||||
@ApiResponse(responseCode = "401", description = "not authorized",
|
||||
content = @Content)})
|
||||
@GetMapping
|
||||
public List<ProjectGetDto> findAll() {
|
||||
return this.service
|
||||
.readAll()
|
||||
.stream()
|
||||
.map(this.projectMapper::mapToGetDto)
|
||||
.toList();
|
||||
}
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
package de.szut.lf8_starter.project.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
public class ProjectGetDto {
|
||||
private long id;
|
||||
|
||||
private String name;
|
||||
|
||||
private long leadingEmployee;
|
||||
|
||||
private List<Long> employees;
|
||||
|
||||
private long contractor;
|
||||
|
||||
private String contractorName;
|
||||
|
||||
private String comment;
|
||||
|
||||
private LocalDate startDate;
|
||||
|
||||
private LocalDate endDate;
|
||||
}
|
Loading…
Reference in New Issue
Block a user