Replace VisionOBJService.java

parent d8319292
......@@ -161,11 +161,12 @@ public class VisionOBJService extends RestAPIService {
return Response.status(200).entity(result).build();
}
//Creat
@POST
// Added by Amol S. on 24-JUN-24 [new endpoint for pophelp info] -- START
@GET
@Path("/getObjPopHelpInfoAll")
public Response getObjPopHelpInfoAll(@FormParam("OBJ_NAME") String objName, @Context HttpServletRequest request,
@Produces(MediaType.APPLICATION_JSON)
public Response getObjPopHelpInfoAll(@QueryParam("OBJ_NAME") String objName, @Context HttpServletRequest request,
@Context HttpServletResponse response, @HeaderParam("TOKEN_ID") String tokenIDfromHeader)
throws BaseException, Exception {
......@@ -173,6 +174,7 @@ public class VisionOBJService extends RestAPIService {
String result = visonOBJServiceUtility.getObjPopHelpInfoAll(objName, tokenIDfromHeader);
return Response.status(200).entity(result).build();
}
// Added by Amol S. on 24-JUN-24 [new endpoint for pophelp info] -- END
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment