This is an automated email from the ASF dual-hosted git repository.
grv pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git The following commit(s) were added to refs/heads/trunk by this push: new 78c5d25 Revered changes do for implementing ordered map as those changes are not in framework yet(OFBIZ-11328) 78c5d25 is described below commit 78c5d25331b482009850013c392b80161a819924 Author: Girish Vasmatkar <[hidden email]> AuthorDate: Wed Sep 23 15:29:27 2020 +0530 Revered changes do for implementing ordered map as those changes are not in framework yet(OFBIZ-11328) --- .../src/main/java/org/apache/ofbiz/ws/rs/util/OpenApiUtil.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ofbiz-rest-impl/src/main/java/org/apache/ofbiz/ws/rs/util/OpenApiUtil.java b/ofbiz-rest-impl/src/main/java/org/apache/ofbiz/ws/rs/util/OpenApiUtil.java index d285705..b0dd0e1 100644 --- a/ofbiz-rest-impl/src/main/java/org/apache/ofbiz/ws/rs/util/OpenApiUtil.java +++ b/ofbiz-rest-impl/src/main/java/org/apache/ofbiz/ws/rs/util/OpenApiUtil.java @@ -178,21 +178,21 @@ public final class OpenApiUtil { } private static void buildApiResponses() { - Map<String, Object> unauthorizedNoHeaderExample = UtilMisc.toOrderedMap("statusCode", Response.Status.UNAUTHORIZED.getStatusCode(), + Map<String, Object> unauthorizedNoHeaderExample = UtilMisc.toMap("statusCode", Response.Status.UNAUTHORIZED.getStatusCode(), "statusDescription", Response.Status.UNAUTHORIZED.getReasonPhrase(), "errorMessage", "Unauthorized: Access is denied due to invalid or absent Authorization header."); - Map<String, Object> unauthorizedInvalidTokenExample = UtilMisc.toOrderedMap("statusCode", Response.Status.UNAUTHORIZED.getStatusCode(), + Map<String, Object> unauthorizedInvalidTokenExample = UtilMisc.toMap("statusCode", Response.Status.UNAUTHORIZED.getStatusCode(), "statusDescription", Response.Status.UNAUTHORIZED.getReasonPhrase(), "errorMessage", "Unauthorized: Access is denied due to invalid or absent Authorization header."); - Map<String, Object> forbiddenExample = UtilMisc.toOrderedMap("statusCode", Response.Status.FORBIDDEN.getStatusCode(), + Map<String, Object> forbiddenExample = UtilMisc.toMap("statusCode", Response.Status.FORBIDDEN.getStatusCode(), "statusDescription", Response.Status.FORBIDDEN.getReasonPhrase(), "errorMessage", "Forbidden: Insufficient rights to perform this API call."); - Map<String, Object> badRequestExample = UtilMisc.toOrderedMap("statusCode", Response.Status.BAD_REQUEST.getStatusCode(), + Map<String, Object> badRequestExample = UtilMisc.toMap("statusCode", Response.Status.BAD_REQUEST.getStatusCode(), "statusDescription", Response.Status.BAD_REQUEST.getReasonPhrase(), "errorType", "ServiceValidationException", "errorMessage", "createProduct validation failed. The request contained invalid information and could not be processed.", "errorDescription", "The following required parameter is missing: [IN] [createProduct.internalName]"); - Map<String, Object> unprocessableEntExample = UtilMisc.toOrderedMap("statusCode", ResponseStatus.Custom.UNPROCESSABLE_ENTITY.getStatusCode(), + Map<String, Object> unprocessableEntExample = UtilMisc.toMap("statusCode", ResponseStatus.Custom.UNPROCESSABLE_ENTITY.getStatusCode(), "statusDescription", ResponseStatus.Custom.UNPROCESSABLE_ENTITY.getReasonPhrase(), "errorType", "GenericEntityException", "errorMessage", "createProduct execution failed. The request contained invalid information and could not be processed.", |
Free forum by Nabble | Edit this page |