@ApiResponse(responseCode="500",description="Internal Server Error")})
@RequestMapping(value="/geographicSite",
produces={"application/json"},
consumes={"application/json"},
method=RequestMethod.GET)
defaultResponseEntity<List<GeographicSite>>listGeographicSite(@Parameter(description="Comma separated properties to display in response")@Valid@RequestParam(value="fields",required=false)Stringfields,@Parameter(description="Requested index for start of resources to be provided in response")@Valid@RequestParam(value="offset",required=false)Integeroffset,@Parameter(description="Requested number of resources to be provided in response")@Valid@RequestParam(value="limit",required=false)Integerlimit){
// default ResponseEntity<List<GeographicSite>> listGeographicSite(@Parameter(description = "Comma separated properties to display in response") @Valid @RequestParam(value = "fields", required = false) String fields, @Parameter(description = "Requested index for start of resources to be provided in response") @Valid @RequestParam(value = "offset", required = false) Integer offset, @Parameter(description = "Requested number of resources to be provided in response") @Valid @RequestParam(value = "limit", required = false) Integer limit) {
// log.error("Couldn't serialize response for content type application/json", e);
// return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR);
// }
// }
// } else {
// log.warn("ObjectMapper or HttpServletRequest not configured in default GeographicSiteManagementApi interface so no example is generated");
// }
// return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
// }
@Operation(summary="Updates partially a 'GeographicSite' by Id",operationId="patchGeographicSite",description="",tags={"GeographicSite",})
@@ -137,7 +138,7 @@ public interface GeographicSiteManagementApi {
produces={"application/json"},
consumes={"application/json"},
method=RequestMethod.PATCH)
defaultResponseEntity<GeographicSite>patchGeographicSite(@Parameter(description="Identifier of the Geographic site",required=true)@PathVariable("id")Stringid,@Parameter(description="The Service Level Specification to be updated",required=true)@Valid@RequestBodyGeographicSitegeographicSite){
defaultResponseEntity<GeographicSite>patchGeographicalSite(@Parameter(description="Identifier of the Geographic site",required=true)@PathVariable("id")Stringid,@Parameter(description="The Service Level Specification to be updated",required=true)@Valid@RequestBodyGeographicSitegeographicSite){