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

org.jboss.resteasy.client.EntityTypeFactory Maven / Gradle / Ivy

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

import javax.ws.rs.core.MultivaluedMap;

/**
 * @deprecated The Resteasy client framework in resteasy-jaxrs is replaced by the JAX-RS 2.0 compliant resteasy-client module.
 * @author Bill Burke
 * @version $Revision: 1 $
 * 
 * 

* Note. org.jboss.resteasy.client.ClientResponse is a generic type in the Resteasy client framework, * but org.jboss.resteasy.client.jaxrs.internal.ClientResponse in the resteasy-client module is not, so * EntityTypeFactory is no longer useful. * */ @Deprecated public interface EntityTypeFactory { @SuppressWarnings("unchecked") Class getEntityType(int status, MultivaluedMap metadata); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy