Uses of Interface
com.atlassian.httpclient.api.Response

Packages that use Response
com.atlassian.httpclient.api   
 

Uses of Response in com.atlassian.httpclient.api
 

Methods in com.atlassian.httpclient.api that return Response
 Response UnexpectedResponseException.getResponse()
          Returns the unexpected response
 

Methods in com.atlassian.httpclient.api that return types with arguments of type Response
 com.google.common.base.Function<Response,T> DefaultResponseTransformation.getSuccessFunctions()
           
 com.google.common.base.Function<Response,T> ResponseTransformation.getSuccessFunctions()
           
static
<T> com.google.common.base.Function<Response,T>
ResponsePromises.newUnexpectedResponseFunction()
           
 

Method parameters in com.atlassian.httpclient.api with type arguments of type Response
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.badRequest(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'bad request' (400) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.clientError(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'client error' (4xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.conflict(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'conflict' (409) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.created(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'created' (201) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.done(com.google.common.base.Function<Response,T> f)
          Register a function to transform all completed (1xx, 2xx, 3xx, 4xx, and 5xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.error(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform all error (4xx and 5xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.forbidden(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'forbidden' (403) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.informational(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'informational' (1xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.internalServerError(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'internal server error' (500) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.noContent(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'no content' (204) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.notFound(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'not found' (404) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.notModified(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'not modified' (304) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.notSuccessful(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform all non-'successful' (1xx, 3xx, 4xx, 5xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.ok(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'ok' (200) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.on(HttpStatus status, com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform HTTP responses with a specific status.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.on(int statusCode, com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform HTTP responses with a specific status code.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.others(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform all other HTTP responses (i.e.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.redirection(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'redirection' (3xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.seeOther(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'see other' (303) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.serverError(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'server error' (5xx) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.serviceUnavailable(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'service unavailable' (503) HTTP responses.
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.successful(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'successful' (2xx) HTTP responses.
static ResponsePromise ResponsePromises.toResponsePromise(com.atlassian.util.concurrent.Promise<Response> promise)
           
 ResponseTransformation.Builder<T> ResponseTransformation.Builder.unauthorized(com.google.common.base.Function<Response,? extends T> f)
          Register a function to transform 'unauthorized' (401) HTTP responses.
 

Constructors in com.atlassian.httpclient.api with parameters of type Response
UnexpectedResponseException(Response response)
          Creates a new exception for the given response.
 



Copyright © 2012–2015 Atlassian. All rights reserved.