Uses of Class
com.tccc.commons.httpclient.JsonResp

Packages that use JsonResp
Package
Description
Provides classes to access REST services hosted in the cloud.
  • Uses of JsonResp in com.tccc.commons.httpclient

    Methods in com.tccc.commons.httpclient that return JsonResp
    Modifier and Type
    Method
    Description
    <T> JsonResp<T>
    JsonTemplate.DELETE(String url, Object body, Class<T> clazz, boolean envelope)
    Performs a DELETE request on the specified URL and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.DELETE(URI uri, Object body, Class<T> clazz, boolean envelope)
    Performs a DELETE request on the specified URI and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.fromJson(ContentResponse resp, Class<T> clazz, boolean envelope)
    Parses the body of the specified response into the specified class.
    <T> JsonResp<T>
    JsonTemplate.GET(String url, Class<T> clazz, boolean envelope)
    Performs a GET request on the specified URL and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.GET(URI uri, Class<T> clazz, boolean envelope)
    Performs a GET request on the specified URI and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.POST(String url, Object body, Class<T> clazz, boolean envelope)
    Performs a POST request on the specified URL with the body object and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.POST(URI uri, Object body, Class<T> clazz, boolean envelope)
    Performs a POST request on the specified URI with the body object and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.PUT(String url, Object body, Class<T> clazz, boolean envelope)
    Performs a PUT request on the specified URL with the body object and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.PUT(URI uri, Object body, Class<T> clazz, boolean envelope)
    Performs a PUT request on the specified URI with the body object and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.send(Request request, Class<T> clazz, boolean envelope)
    Sends the given request and then parses the response into an instance of the specified class.
    <T> JsonResp<T>
    JsonTemplate.send(org.eclipse.jetty.http.HttpMethod method, String url, Object body, Class<T> clazz, boolean envelope)
    Sends the given request and then parses the response into an instance of the specified class.