| 1 | package edu.ucsb.cs156.organic.controllers; | |
| 2 | ||
| 3 | import edu.ucsb.cs156.organic.models.SystemInfo; | |
| 4 | import edu.ucsb.cs156.organic.services.SystemInfoService; | |
| 5 | import io.swagger.v3.oas.annotations.tags.Tag; | |
| 6 | import io.swagger.v3.oas.annotations.Operation; | |
| 7 | ||
| 8 | import org.springframework.beans.factory.annotation.Autowired; | |
| 9 | import org.springframework.web.bind.annotation.GetMapping; | |
| 10 | import org.springframework.web.bind.annotation.RequestMapping; | |
| 11 | import org.springframework.web.bind.annotation.RestController; | |
| 12 | ||
| 13 | @Tag(name = "System Information") | |
| 14 | @RequestMapping("/api/systemInfo") | |
| 15 | @RestController | |
| 16 | public class SystemInfoController extends ApiController { | |
| 17 | ||
| 18 |     @Autowired | |
| 19 |     private SystemInfoService systemInfoService; | |
| 20 | ||
| 21 |     @Operation(summary = "Get global information about the application") | |
| 22 |     @GetMapping("") | |
| 23 |     public SystemInfo getSystemInfo() { | |
| 24 | 
1
1. getSystemInfo : replaced return value with null for edu/ucsb/cs156/organic/controllers/SystemInfoController::getSystemInfo → KILLED | 
        return systemInfoService.getSystemInfo(); | 
| 25 |     } | |
| 26 | ||
| 27 | } | |
Mutations | ||
| 24 | 
 
 1.1  |