Checkstyle

This commit is contained in:
2023-03-21 08:06:04 -05:00
parent 8924343490
commit 4485898d0e

View File

@ -245,15 +245,14 @@ public class GenerateOpenApiSpecAction extends AbstractQActionFunction<GenerateO
);
}
openAPI.getPaths().put("/" + tableName + "/query", new Path().withGet(queryGet)
/*
.withPost(new Method()
.withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.")
.withTags(ListBuilder.of(tableLabel))
.withResponses(buildStandardErrorResponses())
)
*/
);
openAPI.getPaths().put("/" + tableName + "/query", new Path().withGet(queryGet));
/*
.withPost(new Method()
.withSummary("Search the " + tableLabel + " table by posting a QueryFilter object.")
.withTags(ListBuilder.of(tableLabel))
.withResponses(buildStandardErrorResponses())
)
*/
/*
openAPI.getPaths().put("/" + tableName + "/{" + primaryKeyName + "}", new Path()