All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.client.core.extractors.EntityExtractor Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.jboss.resteasy.client.core.extractors;


/**
 * EntityExtractor extract objects from responses. An extractor can extract a
 * status, a header, a cookie, the response body, the clientRequest object, the
 * clientResponse object, or anything else that a "response object" might need.
 *
 * @author Solomon Duskis
 * @version $Revision: 1 $
 * @see EntityExtractorFactory
 */
public interface EntityExtractor
{
   T extractEntity(ClientRequestContext context, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy