com.oracle.bmc.http.client.StandardClientProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-common-httpclient Show documentation
Show all versions of oci-java-sdk-common-httpclient Show documentation
This project contains the HTTP client API of the SDK used for Oracle Cloud Infrastructure
The newest version!
/**
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
package com.oracle.bmc.http.client;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import java.security.KeyStore;
import java.time.Duration;
public final class StandardClientProperties {
private StandardClientProperties() {}
public static final ClientProperty READ_TIMEOUT =
ClientProperty.create("readTimeout");
public static final ClientProperty CONNECT_TIMEOUT =
ClientProperty.create("connectTimeout");
public static final ClientProperty ASYNC_POOL_SIZE =
ClientProperty.create("asyncPoolSize");
public static final ClientProperty BUFFER_REQUEST =
ClientProperty.create("bufferRequest");
public static final ClientProperty KEY_STORE =
ClientProperty.create("keyStore");
public static final ClientProperty TRUST_STORE = ClientProperty.create("trustStore");
public static final ClientProperty HOSTNAME_VERIFIER =
ClientProperty.create("hostnameVerifier");
public static final ClientProperty SSL_CONTEXT =
ClientProperty.create("sslContext");
public static final ClientProperty PROXY = ClientProperty.create("proxy");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy