I have the following code:
@POST
@Path("query")
@Produces(MediaType.APPLICATION_JSON)
public MyObject myMethod(@FormParam("id") String id)
{
//if some condition is met
if(...)
throw new WebApplicationException(Response.Status.SERVICE_UNAVAILABLE);
else
//proceed to my logic and return myObject
}
So basically, if my web client, using AJAX, receives a Response.Status.SERVICE_UNAVAILABLE, it will show a customized web page. If the call is successful, it will show a different web page.
My questions is: Is there anyway that in myMethod, I can return the Response.Status.SERVICE_UNAVAILABLE without throwing the exception. Something like:
if(...)
return Response.Status.SERVICE_UNAVAILABLE)
else
//proceed my logic and return myObject
I basically want the client to know that its request cannot be fulfilled at this time and show a customized web page.