From 42785b861c6ee43e8af80d64b41eeb726e6669d7 Mon Sep 17 00:00:00 2001 From: Ruirui Zhang Date: Tue, 16 Jul 2024 13:39:54 -0700 Subject: [PATCH] add javadoc Signed-off-by: Ruirui Zhang --- .../org/opensearch/plugin/wlm/UpdateQueryGroupResponse.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/workload-management/src/main/java/org/opensearch/plugin/wlm/UpdateQueryGroupResponse.java b/plugins/workload-management/src/main/java/org/opensearch/plugin/wlm/UpdateQueryGroupResponse.java index b1fd4b698d017..4ddf84a6e3c88 100644 --- a/plugins/workload-management/src/main/java/org/opensearch/plugin/wlm/UpdateQueryGroupResponse.java +++ b/plugins/workload-management/src/main/java/org/opensearch/plugin/wlm/UpdateQueryGroupResponse.java @@ -30,7 +30,8 @@ public class UpdateQueryGroupResponse extends ActionResponse implements ToXConte /** * Constructor for UpdateQueryGroupResponse - * @param queryGroup - The QueryGroup to be updated + * @param queryGroup - the QueryGroup to be updated + * @param restStatus - the rest status for the response */ public UpdateQueryGroupResponse(final QueryGroup queryGroup, RestStatus restStatus) { this.queryGroup = queryGroup; @@ -39,7 +40,7 @@ public UpdateQueryGroupResponse(final QueryGroup queryGroup, RestStatus restStat /** * Constructor for UpdateQueryGroupResponse - * @param in - A {@link StreamInput} object + * @param in - a {@link StreamInput} object */ public UpdateQueryGroupResponse(StreamInput in) throws IOException { queryGroup = new QueryGroup(in);