Tabnine Logo
BaseClientResponse.setGenericReturnType
Code IndexAdd Tabnine to your IDE (free)

How to use
setGenericReturnType
method
in
org.jboss.resteasy.client.core.BaseClientResponse

Best Java code snippets using org.jboss.resteasy.client.core.BaseClientResponse.setGenericReturnType (Showing top 20 results out of 315)

origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> httpMethod(String method, Class<T> returnType,
                    Type genericType) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) httpMethod(method);
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> put(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) put();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> delete(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) delete();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> post(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) post();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> get(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) get();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> options(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) options();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> post(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) post();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> options(Class<T> returnType, Type genericType)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) options();
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> httpMethod(String method, Class<T> returnType,
                    Type genericType) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) httpMethod(method);
 response.setReturnType(returnType);
 response.setGenericReturnType(genericType);
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> options(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) options();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> delete(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) delete();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

  public Object extractEntity(ClientRequestContext context, Object... args)
  {
   context.getClientResponse().setReturnType(responseReturnType);
   context.getClientResponse().setGenericReturnType(genericReturnType);
   return context.getClientResponse();
  }
};
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> get(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) get();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> post(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) post();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> httpMethod(String method, GenericType type)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) httpMethod(method);
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> get(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) get();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> options(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) options();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> httpMethod(String method, GenericType type)
    throws Exception
{
 BaseClientResponse response = (BaseClientResponse) httpMethod(method);
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-legacy

public <T> ClientResponse<T> put(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) put();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

public <T> ClientResponse<T> put(GenericType type) throws Exception
{
 BaseClientResponse response = (BaseClientResponse) put();
 response.setReturnType(type.getType());
 response.setGenericReturnType(type.getGenericType());
 return response;
}
org.jboss.resteasy.client.coreBaseClientResponsesetGenericReturnType

Popular methods of BaseClientResponse

  • getStreamFactory
  • setReturnType
  • getEntity
  • getMetadata
  • getStatus
  • <init>
  • setAnnotations
  • setAttributeExceptionsTo
  • setHeaders
  • setProviderFactory
  • setStatus
  • checkFailureStatus
  • setStatus,
  • checkFailureStatus,
  • copyFromError,
  • createResponseFailure,
  • getAnnotations,
  • getLinkHeader,
  • getLocationLink,
  • getMediaType,
  • getResponseHeader,
  • getResponseHeaders

Popular in Java

  • Reading from database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • JPanel (javax.swing)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now