@PreAuthorize("hasRole('ROLE_ADMIN')")
 @RequestMapping("/{id}")
 public @ResponseBody InterfaceReportListDto findOne(@PathVariable("id") Long id) {
   return InterfaceReportListDto.create(interfaceReportService.findOne(id));
 }