org.resteasy.spi
Interface ClientResponse<T>
public interface ClientResponse<T>
Response interface for the RESTEasy client framework. Use this in your client proxy interface method return type
declarations if you want access to the response entity as well as status and header information.
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
getEntity
T getEntity()
getHeaders
javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> getHeaders()
getStatus
int getStatus()
Copyright © 2008. All Rights Reserved.