You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/07/17 11:24:27 UTC

[syncope] branch master updated: OpenAPI: fixing duplicate remediationKey parameter

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new 1dc92cd  OpenAPI: fixing duplicate remediationKey parameter
1dc92cd is described below

commit 1dc92cd22e5b729900634daae88c800b217256b9
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Fri Jul 17 13:24:11 2020 +0200

    OpenAPI: fixing duplicate remediationKey parameter
---
 .../apache/syncope/common/rest/api/service/RemediationService.java    | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/common/idm/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/RemediationService.java b/common/idm/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/RemediationService.java
index 2c4a7f7..23a258a 100644
--- a/common/idm/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/RemediationService.java
+++ b/common/idm/rest-api/src/main/java/org/apache/syncope/common/rest/api/service/RemediationService.java
@@ -108,8 +108,6 @@ public interface RemediationService extends JAXRSService {
             + " with External Resources with no priority set",
             allowEmptyValue = true, schema =
             @Schema(type = "boolean", defaultValue = "false"))
-    @Parameter(name = "remediationKey", description = "Remediation's key", in = ParameterIn.PATH, schema =
-            @Schema(type = "string"))
     @ApiResponses(
             @ApiResponse(responseCode = "201",
                     description = "Object successfully created enriched with propagation status information, as Entity,"
@@ -154,8 +152,6 @@ public interface RemediationService extends JAXRSService {
             + " with External Resources with no priority set",
             allowEmptyValue = true, schema =
             @Schema(type = "boolean", defaultValue = "false"))
-    @Parameter(name = "remediationKey", description = "Remediation's key", in = ParameterIn.PATH, schema =
-            @Schema(type = "string"))
     @ApiResponses({
         @ApiResponse(responseCode = "200",
                 description = "Object successfully updated enriched with propagation status information, as Entity",