Package com.oracle.bmc.http.client
Interface HttpProvider
-
public interface HttpProvider
-
-
Field Summary
Fields Modifier and Type Field Description static StringADD_DEPENDENCY_SUGGESTION
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static HttpProvidergetDefault()SerializergetSerializer()default booleanhasCapability(HttpProviderCapability capability)Returns true if this HTTP provider has the requested capability.HttpClientBuildernewBuilder()
-
-
-
Field Detail
-
ADD_DEPENDENCY_SUGGESTION
static final String ADD_DEPENDENCY_SUGGESTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
newBuilder
HttpClientBuilder newBuilder()
-
getSerializer
Serializer getSerializer()
-
getDefault
static HttpProvider getDefault()
-
hasCapability
default boolean hasCapability(HttpProviderCapability capability)
Returns true if this HTTP provider has the requested capability.By default, this method returns false, indicating that no specific capabilities are supported. Subclasses may override this method to provide their own capabilities.
- Returns:
- true if this HTTP provider has the requested capability.
-
-