@ApiResponse(responseCode="500",description="Internal Server Error")})
@RequestMapping(value="/geographicAddress",
@PostMapping(value="/geographicAddress",
produces={"application/json"},
consumes={"application/json"},
method=RequestMethod.POST)
consumes={"application/json"})
ResponseEntity<GeographicAddress>createGeographicAddress(@Parameter(description="The geographic address to be created",required=true)@Valid@RequestBodyGeographicAddressgeographicAddress);
@Operation(summary="Deletes a 'GeographicAddress' by Id",operationId="deleteGeographicAddress",description="",tags={"GeographicAddress",})
@@ -65,10 +60,9 @@ public interface GeographicAddressManagementApi {
@ApiResponse(responseCode="405",description="Method Not allowed"),
@ApiResponse(responseCode="500",description="Internal Server Error")})
@RequestMapping(value="/geographicAddress/{id}",
@PatchMapping(value="/geographicAddress/{id}",
produces={"application/json"},
consumes={"application/json"},
method=RequestMethod.PATCH)
consumes={"application/json"})
ResponseEntity<GeographicAddress>patchGeographicAddress(@Parameter(description="Identifier of the Geographic address",required=true)@PathVariable("id")Stringid,@Parameter(description="The Service Level Specification to be updated",required=true)@Valid@RequestBodyGeographicAddressgeographicAddress);
@@ -116,10 +107,8 @@ public interface GeographicAddressManagementApi {
@ApiResponse(responseCode="405",description="Method Not allowed"),
@ApiResponse(responseCode="500",description="Internal Server Error")})
@RequestMapping(value="/geographicAddress/{id}",
produces={"application/json"},
consumes={"application/json"},
method=RequestMethod.GET)
@GetMapping(value="/geographicAddress/{id}",
produces={"application/json"})
ResponseEntity<GeographicAddress>retrieveGeographicAddress(@Parameter(description="Identifier of the geographic address",required=true)@PathVariable("id")Stringid);
@Operation(summary="Retrieves a 'GeographicSubAddress' by Id",operationId="retrieveGeographicSubAddress",description="",tags={"GeographicSubAddress",})
@@ -132,10 +121,8 @@ public interface GeographicAddressManagementApi {
@ApiResponse(responseCode="405",description="Method Not allowed"),
ResponseEntity<GeographicAddressValidation>createGeographicAddressValidation(@Parameter(description="The geographic address to be created",required=true)@Valid@RequestBodyGeographicAddressValidationgeographicAddressValidation);
@Operation(summary="Deletes a 'GeographicAddressValidation' by Id",operationId="deleteGeographicAddressValidation",description="",tags={"GeographicAddressValidation",})
@@ -61,10 +58,9 @@ public interface GeographicAddressValidationManagementApi {
@ApiResponse(responseCode="405",description="Method Not allowed"),
ResponseEntity<Void>deleteGeographicAddressValidation(@Parameter(description="Identifier of the Geographic address",required=true)@PathVariable("id")Stringid);
@@ -78,10 +74,8 @@ public interface GeographicAddressValidationManagementApi {
@ApiResponse(responseCode="405",description="Method Not allowed"),
ResponseEntity<GeographicAddressValidation>patchGeographicAddressValidation(@Parameter(description="Identifier of the Geographic address",required=true)@PathVariable("id")Stringid,@Parameter(description="The Service Level Specification to be updated",required=true)@Valid@RequestBodyGeographicAddressValidationgeographicAddressValidation);
@@ -112,10 +105,8 @@ public interface GeographicAddressValidationManagementApi {
@ApiResponse(responseCode="405",description="Method Not allowed"),
ResponseEntity<GeographicAddressValidation>retrieveGeographicAddressValidation(@Parameter(description="Identifier of the geographic address",required=true)@PathVariable("id")Stringid);
@Parameter(description="The geographic address validation to be created",required=true)@Valid@RequestBodyGeographicAddressValidationgeographicAddressValidatio
@Parameter(description="The geographic address validation to be created",required=true)@Valid@RequestBodyGeographicAddressValidationgeographicAddressValidation