本文整理汇总了Java中com.squareup.okhttp.internal.http.AuthenticatorAdapter类的典型用法代码示例。如果您正苦于以下问题:Java AuthenticatorAdapter类的具体用法?Java AuthenticatorAdapter怎么用?Java AuthenticatorAdapter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AuthenticatorAdapter类属于com.squareup.okhttp.internal.http包,在下文中一共展示了AuthenticatorAdapter类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: copyWithDefaults
import com.squareup.okhttp.internal.http.AuthenticatorAdapter; //导入依赖的package包/类
OkHttpClient copyWithDefaults() {
OkHttpClient result = new OkHttpClient(this);
if (result.proxySelector == null) {
result.proxySelector = ProxySelector.getDefault();
}
if (result.cookieHandler == null) {
result.cookieHandler = CookieHandler.getDefault();
}
if (result.socketFactory == null) {
result.socketFactory = SocketFactory.getDefault();
}
if (result.sslSocketFactory == null) {
result.sslSocketFactory = getDefaultSSLSocketFactory();
}
if (result.hostnameVerifier == null) {
result.hostnameVerifier = OkHostnameVerifier.INSTANCE;
}
if (result.certificatePinner == null) {
result.certificatePinner = CertificatePinner.DEFAULT;
}
if (result.authenticator == null) {
result.authenticator = AuthenticatorAdapter.INSTANCE;
}
if (result.connectionPool == null) {
result.connectionPool = ConnectionPool.getDefault();
}
if (result.protocols == null) {
result.protocols = DEFAULT_PROTOCOLS;
}
if (result.connectionSpecs == null) {
result.connectionSpecs = DEFAULT_CONNECTION_SPECS;
}
if (result.dns == null) {
result.dns = Dns.SYSTEM;
}
return result;
}
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:38,代码来源:OkHttpClient.java
示例2: createHttpClient
import com.squareup.okhttp.internal.http.AuthenticatorAdapter; //导入依赖的package包/类
/**
* @return a new http client
*/
private OkHttpClient createHttpClient() {
OkHttpClient client = new OkHttpClient();
client.setReadTimeout(connectorOptions.getReadTimeout(), TimeUnit.SECONDS);
client.setWriteTimeout(connectorOptions.getWriteTimeout(), TimeUnit.SECONDS);
client.setConnectTimeout(connectorOptions.getConnectTimeout(), TimeUnit.SECONDS);
client.setFollowRedirects(connectorOptions.isFollowRedirects());
client.setFollowSslRedirects(connectorOptions.isFollowRedirects());
client.setProxySelector(ProxySelector.getDefault());
client.setCookieHandler(CookieHandler.getDefault());
client.setCertificatePinner(CertificatePinner.DEFAULT);
client.setAuthenticator(AuthenticatorAdapter.INSTANCE);
client.setConnectionPool(ConnectionPool.getDefault());
client.setProtocols(Util.immutableList(Protocol.HTTP_1_1));
client.setConnectionSpecs(DEFAULT_CONNECTION_SPECS);
client.setSocketFactory(SocketFactory.getDefault());
Internal.instance.setNetwork(client, Network.DEFAULT);
return client;
}
开发者ID:apiman,项目名称:apiman,代码行数:23,代码来源:HttpConnectorFactory.java
示例3: HawkularMetricsClient
import com.squareup.okhttp.internal.http.AuthenticatorAdapter; //导入依赖的package包/类
/**
* Constructor.
* @param metricsServer
*/
public HawkularMetricsClient(URL metricsServer) {
this.serverUrl = metricsServer;
httpClient = new OkHttpClient();
httpClient.setReadTimeout(DEFAULT_READ_TIMEOUT, TimeUnit.SECONDS);
httpClient.setWriteTimeout(DEFAULT_WRITE_TIMEOUT, TimeUnit.SECONDS);
httpClient.setConnectTimeout(DEFAULT_CONNECT_TIMEOUT, TimeUnit.SECONDS);
httpClient.setFollowRedirects(true);
httpClient.setFollowSslRedirects(true);
httpClient.setProxySelector(ProxySelector.getDefault());
httpClient.setCookieHandler(CookieHandler.getDefault());
httpClient.setCertificatePinner(CertificatePinner.DEFAULT);
httpClient.setAuthenticator(AuthenticatorAdapter.INSTANCE);
httpClient.setConnectionPool(ConnectionPool.getDefault());
httpClient.setProtocols(Util.immutableList(Protocol.HTTP_1_1));
httpClient.setConnectionSpecs(DEFAULT_CONNECTION_SPECS);
httpClient.setSocketFactory(SocketFactory.getDefault());
Internal.instance.setNetwork(httpClient, Network.DEFAULT);
}
开发者ID:apiman,项目名称:apiman,代码行数:23,代码来源:HawkularMetricsClient.java
示例4: Call
import com.squareup.okhttp.internal.http.AuthenticatorAdapter; //导入依赖的package包/类
protected Call(OkHttpClient paramOkHttpClient, Request paramRequest)
{
OkHttpClient localOkHttpClient = new OkHttpClient(paramOkHttpClient);
if (localOkHttpClient.proxySelector == null) {
localOkHttpClient.proxySelector = ProxySelector.getDefault();
}
if (localOkHttpClient.cookieHandler == null) {
localOkHttpClient.cookieHandler = CookieHandler.getDefault();
}
if (localOkHttpClient.socketFactory == null) {
localOkHttpClient.socketFactory = SocketFactory.getDefault();
}
if (localOkHttpClient.sslSocketFactory == null) {
localOkHttpClient.sslSocketFactory = paramOkHttpClient.getDefaultSSLSocketFactory();
}
if (localOkHttpClient.hostnameVerifier == null) {
localOkHttpClient.hostnameVerifier = OkHostnameVerifier.INSTANCE;
}
if (localOkHttpClient.certificatePinner == null) {
localOkHttpClient.certificatePinner = CertificatePinner.DEFAULT;
}
if (localOkHttpClient.authenticator == null) {
localOkHttpClient.authenticator = AuthenticatorAdapter.INSTANCE;
}
if (localOkHttpClient.connectionPool == null) {
localOkHttpClient.connectionPool = ConnectionPool.getDefault();
}
if (localOkHttpClient.protocols == null) {
localOkHttpClient.protocols = OkHttpClient.DEFAULT_PROTOCOLS;
}
if (localOkHttpClient.connectionSpecs == null) {
localOkHttpClient.connectionSpecs = OkHttpClient.DEFAULT_CONNECTION_SPECS;
}
if (localOkHttpClient.network == null) {
localOkHttpClient.network = Network.DEFAULT;
}
this.client = localOkHttpClient;
this.originalRequest = paramRequest;
}
开发者ID:ChiangC,项目名称:FMTech,代码行数:40,代码来源:Call.java
示例5: copyWithDefaults
import com.squareup.okhttp.internal.http.AuthenticatorAdapter; //导入依赖的package包/类
/**
* Returns a shallow copy of this OkHttpClient that uses the system-wide
* default for each field that hasn't been explicitly configured.
*/
OkHttpClient copyWithDefaults() {
OkHttpClient result = clone();
if (result.proxySelector == null) {
result.proxySelector = ProxySelector.getDefault();
}
if (result.cookieHandler == null) {
result.cookieHandler = CookieHandler.getDefault();
}
if (result.socketFactory == null) {
result.socketFactory = SocketFactory.getDefault();
}
if (result.sslSocketFactory == null) {
result.sslSocketFactory = getDefaultSSLSocketFactory();
}
if (result.hostnameVerifier == null) {
result.hostnameVerifier = OkHostnameVerifier.INSTANCE;
}
if (result.authenticator == null) {
result.authenticator = AuthenticatorAdapter.INSTANCE;
}
if (result.connectionPool == null) {
result.connectionPool = ConnectionPool.getDefault();
}
if (result.protocols == null) {
result.protocols = Util.immutableList(Protocol.HTTP_2, Protocol.SPDY_3, Protocol.HTTP_1_1);
}
return result;
}
开发者ID:NannanZ,项目名称:spdymcsclient,代码行数:33,代码来源:OkHttpClient.java
注:本文中的com.squareup.okhttp.internal.http.AuthenticatorAdapter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论