Uses of Class
de.captaingoldfish.scim.sdk.client.http.HttpResponse
-
Packages that use HttpResponse Package Description de.captaingoldfish.scim.sdk.client.builder de.captaingoldfish.scim.sdk.client.http de.captaingoldfish.scim.sdk.client.response -
-
Uses of HttpResponse in de.captaingoldfish.scim.sdk.client.builder
Methods in de.captaingoldfish.scim.sdk.client.builder that return types with arguments of type HttpResponse Modifier and Type Method Description protected Function<HttpResponse,Boolean>BulkBuilder. isResponseParseable()checks if the response contains a schema-uri that matches the value ofSchemaUris.BULK_RESPONSE_URIprotected Function<HttpResponse,Boolean>ListBuilder.GetRequestBuilder. isResponseParseable()checks if the response contains a schema-uri that matches the value ofSchemaUris.LIST_RESPONSE_URIprotected Function<HttpResponse,Boolean>ListBuilder.PostRequestBuilder. isResponseParseable()checks if the response contains a schema-uri that matches the value ofSchemaUris.LIST_RESPONSE_URIprotected Function<HttpResponse,Boolean>RequestBuilder. isResponseParseable()an optional method that might be used by a builder to verify if the response can be parsed into the expected resource typeMethods in de.captaingoldfish.scim.sdk.client.builder with parameters of type HttpResponse Modifier and Type Method Description protected ServerResponse<ListResponse<T>>ListBuilder.GetRequestBuilder. toResponse(HttpResponse response)uses a custom response type that overrides the translation of the returned resourceprotected ServerResponse<ListResponse<T>>ListBuilder.PostRequestBuilder. toResponse(HttpResponse response)uses a custom response type that overrides the translation of the returned resourceprotected ServerResponse<T>RequestBuilder. toResponse(HttpResponse response)moved into its own method to override the returned class in the list-builder that has a sub-generic typeConstructors in de.captaingoldfish.scim.sdk.client.builder with parameters of type HttpResponse Constructor Description ListServerResponse(HttpResponse httpResponse, boolean expectedResponseCode, Class<ListResponse<T>> type, Class<T> responseEntityType, Function<HttpResponse,Boolean> isResponseParseable)Constructor parameters in de.captaingoldfish.scim.sdk.client.builder with type arguments of type HttpResponse Constructor Description ListServerResponse(HttpResponse httpResponse, boolean expectedResponseCode, Class<ListResponse<T>> type, Class<T> responseEntityType, Function<HttpResponse,Boolean> isResponseParseable) -
Uses of HttpResponse in de.captaingoldfish.scim.sdk.client.http
Methods in de.captaingoldfish.scim.sdk.client.http that return HttpResponse Modifier and Type Method Description HttpResponseHttpResponse.HttpResponseBuilder. build()HttpResponseScimHttpClient. sendRequest(org.apache.http.client.methods.HttpUriRequest uriRequest)this method will send the request with the apache http client and will also handleIOExceptions and wrap them intoIORuntimeExceptions -
Uses of HttpResponse in de.captaingoldfish.scim.sdk.client.response
Constructors in de.captaingoldfish.scim.sdk.client.response with parameters of type HttpResponse Constructor Description ServerResponse(HttpResponse httpResponse, boolean expectedResponseCode, Class<T> type, Function<HttpResponse,Boolean> isResponseParseable)Constructor parameters in de.captaingoldfish.scim.sdk.client.response with type arguments of type HttpResponse Constructor Description ServerResponse(HttpResponse httpResponse, boolean expectedResponseCode, Class<T> type, Function<HttpResponse,Boolean> isResponseParseable)
-