Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dewniMW committed Oct 8, 2023
1 parent 1076479 commit c7ea76c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ public Response organizationsOrganizationIdDelete(@ApiParam(value = "ID of the o
@ApiResponse(code = 400, message = "Invalid input in the request.", response = Error.class),
@ApiResponse(code = 401, message = "Authentication information is missing or invalid.", response = Void.class),
@ApiResponse(code = 403, message = "Access forbidden.", response = Void.class),
@ApiResponse(code = 404, message = "Requested resource is not found.", response = Error.class),
@ApiResponse(code = 500, message = "Internal server error.", response = Error.class)
})
public Response organizationsOrganizationIdDiscoveryDelete(@ApiParam(value = "ID of the organization whose discovery attributes are to be deleted.",required=true) @PathParam("organization-id") String organizationId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public static URI getResourceLocation(String organizationId) {
* Get location of the created organization discovery attributes.
*
* @param organizationId The unique identifier of the organization.
* @return URI
* @return URI.
*/
public static URI getDiscoveryResourceLocation(String organizationId) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -661,8 +661,6 @@ paths:
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
'500':
$ref: '#/components/responses/ServerError'
put:
Expand Down

0 comments on commit c7ea76c

Please sign in to comment.