List of usage examples for org.springframework.http.client ClientHttpRequestFactory interface-usage
From source file org.keycloak.adapters.springsecurity.service.context.KeycloakConfidentialClientRequestFactory.java
/**
* {@link ClientHttpRequestFactory} implementation for creating requests to a
* Keycloak server. This factory automatically authenticates confidential Keycloak
* clients to the Keycloak server.
*
* @author <a href="mailto:srossillo@smartling.com">Scott Rossillo</a>
From source file nl.flotsam.greader.http.TracingClientHttpRequestFactory.java
/** * Created by IntelliJ IDEA. User: wilfred Date: Jun 21, 2010 Time: 1:24:18 PM To change this template use File | * Settings | File Templates. */ public class TracingClientHttpRequestFactory implements ClientHttpRequestFactory {
From source file nl.iwelcome.connector.google.TracingClientHttpRequestFactory.java
public class TracingClientHttpRequestFactory implements ClientHttpRequestFactory { private final ClientHttpRequestFactory factory; public TracingClientHttpRequestFactory(ClientHttpRequestFactory factory) { this.factory = factory;
From source file ar.com.aleatoria.ue.rest.SecureSimpleClientHttpRequestFactory.java
/**
* This class is a modification of the class SimpleClientHttpRequestFactory that make us able
* to set a CredentialProvider.
*
* @author Arjen Poutsma
* @author Roy Clarkson
From source file com.kimboo.giffy.server.rest.SecureSimpleClientHttpRequestFactory.java
/**
* This class is a modification of the class SimpleClientHttpRequestFactory that make us able
* to set a CredentialProvider.
*
* @author Arjen Poutsma
* @author Roy Clarkson
From source file com.concentricsky.android.khanacademy.data.remote.SpringRequestFactory.java
public class SpringRequestFactory implements ClientHttpRequestFactory { private OAuthConsumer consumer; public SpringRequestFactory(OAuthConsumer consumer) { this.consumer = consumer;
From source file org.keycloak.adapters.springsecurity.client.KeycloakClientRequestFactory.java
/**
* Factory for {@link ClientHttpRequest} objects created for server to server secured
* communication using OAuth2 bearer tokens issued by Keycloak.
*
* @author <a href="mailto:srossillo@smartling.com">Scott Rossillo</a>
* @version $Revision: 1 $
From source file com.yoho.core.trace.instrument.web.client.async.TraceAsyncClientHttpRequestFactoryWrapper.java
/**
* Wrapper that adds trace related headers to the created {@link AsyncClientHttpRequest}
* and to the {@link ClientHttpRequest}
*
* @author Marcin Grzejszczak
* @author Spencer Gibb
From source file org.dthume.spring.http.client.httpcomponents.HttpComponentsClientRequestFactory.java
/**
* Implementation of {@link ClientHttpRequestFactory} based upon Apache
* HttpComponents/client.
*
* Accepts an implementation of {@link HttpClient} as an optional constructor
* argument, defaulting to a {@link DefaultHttpClient} using a
From source file org.springframework.http.client.CommonsClientHttpRequestFactory.java
/**
* {@link org.springframework.http.client.ClientHttpRequestFactory} implementation that uses
* <a href="http://jakarta.apache.org/commons/httpclient">Jakarta Commons HttpClient</a> to create requests.
*
* <p>Allows to use a pre-configured {@link HttpClient} instance -
* potentially with authentication, HTTP connection pooling, etc.