Skip to content
Snippets Groups Projects

Tmf 674 feature

Closed Labros Papadopoulos requested to merge tmf-674-feature into develop
2 unresolved threads
5 files
+ 93
19
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -41,7 +41,7 @@ public interface GeographicSiteManagementApi {
return getRequest().map(r -> r.getHeader("Accept"));
}
@Operation(summary = "Creates a 'GeographicSite'", operationId = "createGeographicSite", description = "", tags={ "geographicSite", })
@Operation(summary = "Creates a 'GeographicSite '", operationId = "createGeographicSite", description = "", tags={ "geographicSite", })
@ApiResponses(value = {
@ApiResponse(responseCode = "400", description = "Created" ),
@ApiResponse(responseCode = "400", description = "Bad Request" ),
@@ -59,7 +59,7 @@ public interface GeographicSiteManagementApi {
return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
}
@Operation(summary = "Deletes a 'GeographicSite' by Id", operationId = "deleteGeographicSite", description = "", tags={ "GeographicSite", })
@Operation(summary = "Deletes a GeographicSite by Id", operationId = "deleteGeographicSite", description = "", tags={ "GeographicSite", })
@ApiResponses(value = {
@ApiResponse(responseCode = "204", description = "Deleted" ),
@ApiResponse(responseCode = "400", description = "Bad Request" ),
@@ -109,7 +109,7 @@ public interface GeographicSiteManagementApi {
produces = { "application/json" },
consumes = { "application/json" },
method = RequestMethod.PATCH)
default ResponseEntity<GeographicSite> patchGeographicalSite(@Parameter(description = "Identifier of the Geographic site",required=true) @PathVariable("id") String id,@Parameter(description = "The Service Level Specification to be updated" ,required=true ) @Valid @RequestBody GeographicSite geographicSite) {
default ResponseEntity<GeographicSite> patchGeographicalSite(Principal principal,@Parameter(description = "Identifier of the Geographic site",required=true) @PathVariable("id") String id,@Parameter(description = "The Service Level Specification to be updated" ,required=true ) @Valid @RequestBody GeographicSite geographicSite) {
return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
}
@@ -127,7 +127,7 @@ public interface GeographicSiteManagementApi {
@RequestMapping(value = "/geographicSite/{id}",
produces = { "application/json" },
method = RequestMethod.GET)
default ResponseEntity<GeographicSite> retrieveGeographicSite(@Parameter(description = "Identifier of the Geographic site",required=true) @PathVariable("id") String id) {
default ResponseEntity<GeographicSite> retrieveGeographicSite(Principal principal,@Parameter(description = "Identifier of the Geographic site",required=true) @PathVariable("id") String id) {
return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED);
}
Loading