The "com.sun.jersey.api.client.ClientResponse" class in Java is a part of the JAX-RS client API provided by the Jersey framework. It represents the response received from a web server after sending an HTTP request using a Jersey client. It provides methods to access the response status code, headers, and content, allowing developers to handle and process the response data efficiently. This class also supports error handling, allowing the client to gracefully handle exceptions and errors returned by the server.
Java ClientResponse - 30 examples found. These are the top rated real world Java examples of com.sun.jersey.api.client.ClientResponse extracted from open source projects. You can rate examples to help us improve the quality of examples.