Skip to content

Commit

Permalink
2365 consistent translateId name
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Gross cogross committed Nov 14, 2024
1 parent cd604f3 commit 870c493
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ public BaseQueryResponse translateId(@PathParam("id") String id, @QueryParam("pa
* @HTTP 500 internal server error
*/
@POST
@Path("/translateIDs")
@Path("/translateIds")
@Produces({"application/xml", "text/xml", "application/json", "text/yaml", "text/x-yaml", "application/x-yaml", "application/x-protobuf",
"application/x-protostuff"})
@GZIP
@Interceptors({RequiredInterceptor.class, ResponseInterceptor.class})
public BaseQueryResponse translateIDs(@FormParam("idList") String idList, @FormParam("pagesize") @DefaultValue("100") int pagesize,
public BaseQueryResponse translateIds(@FormParam("idList") String idList, @FormParam("pagesize") @DefaultValue("100") int pagesize,
@FormParam("pageTimeout") @DefaultValue("-1") int pageTimeout, @FormParam("TLDonly") @DefaultValue("true") String TLDonly) {

return submitTranslationQuery(idList, pagesize, pageTimeout, TLDonly);
Expand Down

0 comments on commit 870c493

Please sign in to comment.