Uses of Annotation Type
com.google.api.client.util.Beta
Packages that use Beta
Package
Description
Subset of HTTP 1.1 needed from the specification in RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1.
HTTP Transport library for Google API's based on Apache HTTP Client version 4.
HTTP Transport library for Google API's based on Apache HTTP Client version 4.5+.
HTTP Transport library for Google API's based on the
java.net package.Beta XML HTTP library based on the pluggable HTTP library.
Beta Atom XML HTTP library based on the pluggable HTTP library.
Utilities for JSON as specified in RFC 4627: The
application/json Media Type for JavaScript Object Notation (JSON) and Introducing JSON.
Low-level implementation of the GSON parser library based on the GSON JSON library.
Abstract tests for data stores.
Beta Testing utilities used for writing tests based on this library.
Beta Testing utilities used for writing tests based on the Apache HTTP Client.
Beta Testing utilities used for writing tests based on this library.
Beta Testing utilities used for writing tests for JSON WebToken.
Beta Testing utilities used for writing tests based on this library.
General utilities used throughout this library.
Beta Utilities for XML.
Beta Utilities for Atom XML.
Packages with annotations of type Beta
Package
Description
Beta Testing utilities used for writing tests based on the Apache HTTP Client.
Beta Atom XML HTTP library based on the pluggable HTTP library.
Beta Utilities for Atom XML.
Beta Testing utilities used for writing tests based on this library.
Beta Testing utilities used for writing tests based on this library.
Beta Testing utilities used for writing tests based on this library.
Beta Testing utilities used for writing tests for JSON WebToken.
Beta XML HTTP library based on the pluggable HTTP library.
Beta Utilities for XML.
-
Uses of Beta in com.google.api.client.http
Classes in com.google.api.client.http with annotations of type BetaModifier and TypeInterfaceDescriptioninterfaceDeprecated.classDeprecated.(scheduled to be removed in 1.18).static classDeprecated.classclassstatic interfaceinterfaceclassBeta
Utilities for Census monitoring and tracing.Fields in com.google.api.client.http with annotations of type BetaModifier and TypeFieldDescriptionprivate BackOffPolicyHttpRequest.backOffPolicyDeprecated.private HttpIOExceptionHandlerHttpRequest.ioExceptionHandlerHTTP I/O exception handler ornullfor none.private booleanHttpRequest.retryOnExecuteIOExceptionDeprecated.Methods in com.google.api.client.http with annotations of type BetaModifier and TypeMethodDescriptionHttpRequest.executeAsync()Beta
Executes this request asynchronously usingHttpRequest.executeAsync(Executor)in a single separate thread usingExecutors.newFixedThreadPool(int).HttpRequest.executeAsync(Executor executor) Beta
Executes this request asynchronously in a single separate thread using the supplied executor.HttpRequest.getBackOffPolicy()Deprecated.(scheduled to be removed in 1.18).HttpRequest.getIOExceptionHandler()booleanHttpRequest.getRetryOnExecuteIOException()Deprecated.(scheduled to be removed in 1.18) UseHttpRequest.setIOExceptionHandler(HttpIOExceptionHandler)instead.HttpRequest.setBackOffPolicy(BackOffPolicy backOffPolicy) Deprecated.(scheduled to be removed in 1.18).HttpRequest.setIOExceptionHandler(HttpIOExceptionHandler ioExceptionHandler) HttpRequest.setRetryOnExecuteIOException(boolean retryOnExecuteIOException) Deprecated.(scheduled to be removed in 1.18) UseHttpRequest.setIOExceptionHandler(HttpIOExceptionHandler)instead. -
Uses of Beta in com.google.api.client.http.apache
Methods in com.google.api.client.http.apache with annotations of type BetaModifier and TypeMethodDescriptionApacheHttpTransport.Builder.doNotValidateCertificate()Beta
Disables validating server SSL certificates by setting the SSL socket factory usingSslUtils.trustAllSSLContext()for the SSL context andSSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIERfor the host name verifier. -
Uses of Beta in com.google.api.client.http.apache.v2
Constructors in com.google.api.client.http.apache.v2 with annotations of type BetaModifierConstructorDescriptionApacheHttpTransport(org.apache.http.client.HttpClient httpClient, boolean isMtls) Beta
Constructor that allows an alternative Apache HTTP client to be used. -
Uses of Beta in com.google.api.client.http.javanet
Methods in com.google.api.client.http.javanet with annotations of type BetaModifier and TypeMethodDescriptionNetHttpTransport.Builder.doNotValidateCertificate()Beta
Disables validating server SSL certificates by setting the SSL socket factory usingSslUtils.trustAllSSLContext()for the SSL context andSslUtils.trustAllHostnameVerifier()for the host name verifier.NetHttpTransport.Builder.trustCertificates(KeyStore trustStore, KeyStore mtlsKeyStore, String mtlsKeyStorePassword) Beta
Sets the SSL socket factory based on a root certificate trust store and a client certificate key store. -
Uses of Beta in com.google.api.client.http.protobuf
Classes in com.google.api.client.http.protobuf with annotations of type BetaModifier and TypeClassDescriptionclassBeta
Serializes of a protocol buffer message to HTTP content. -
Uses of Beta in com.google.api.client.http.xml
Classes in com.google.api.client.http.xml with annotations of type Beta -
Uses of Beta in com.google.api.client.http.xml.atom
Classes in com.google.api.client.http.xml.atom with annotations of type BetaModifier and TypeClassDescriptionclassBeta
Serializes Atom XML HTTP content based on the data key/value mapping object for an Atom entry.final classAtomFeedParser<T,E> Beta
Atom feed pull parser when the Atom entry class is known in advance. -
Uses of Beta in com.google.api.client.json
Classes in com.google.api.client.json with annotations of type BetaModifier and TypeClassDescriptionclassBeta
Customizes the behavior of a JSON parser.@interfaceBeta
Declares that the data type enclosing this field is polymorphic, and that the value of this field in a heterogeneous JSON schema will determine what type the data should be parsed into.Methods in com.google.api.client.json with annotations of type BetaModifier and TypeMethodDescriptionfinal <T> TJsonParser.parse(Class<T> destinationClass, CustomizeJsonParser customizeParser) Beta
Parse a JSON object, array, or value into a new instance of the given destination class, optionally using the given parser customizer.final voidJsonParser.parse(Object destination, CustomizeJsonParser customizeParser) Beta
Parse a JSON object from the given JSON parser into the given destination object, optionally using the given parser customizer.JsonParser.parse(Type dataType, boolean close, CustomizeJsonParser customizeParser) Beta
Parse a JSON object, array, or value into a new instance of the given destination class, optionally using the given parser customizer.final <T> TJsonParser.parseAndClose(Class<T> destinationClass, CustomizeJsonParser customizeParser) Beta
Parse a JSON object, array, or value into a new instance of the given destination class usingJsonParser.parse(Class, CustomizeJsonParser), and then closes the parser.final voidJsonParser.parseAndClose(Object destination, CustomizeJsonParser customizeParser) Beta
Parse a JSON Object from the given JSON parser -- which is closed after parsing completes -- into the given destination object, optionally using the given parser customizer.final <T> Collection<T> JsonParser.parseArray(Class<?> destinationCollectionClass, Class<T> destinationItemClass, CustomizeJsonParser customizeParser) Beta
Parse a JSON Array from the given JSON parser into the given destination collection, optionally using the given parser customizer.final <T> voidJsonParser.parseArray(Collection<? super T> destinationCollection, Class<T> destinationItemClass, CustomizeJsonParser customizeParser) Beta
Parse a JSON Array from the given JSON parser into the given destination collection, optionally using the given parser customizer.final <T> Collection<T> JsonParser.parseArrayAndClose(Class<?> destinationCollectionClass, Class<T> destinationItemClass, CustomizeJsonParser customizeParser) Beta
Parse a JSON Array from the given JSON parser (which is closed after parsing completes) into the given destination collection, optionally using the given parser customizer.final <T> voidJsonParser.parseArrayAndClose(Collection<? super T> destinationCollection, Class<T> destinationItemClass, CustomizeJsonParser customizeParser) Beta
Parse a JSON Array from the given JSON parser (which is closed after parsing completes) into the given destination collection, optionally using the given parser customizer. -
Uses of Beta in com.google.api.client.json.gson
Classes in com.google.api.client.json.gson with annotations of type BetaModifier and TypeClassDescription(package private) static classHolder for the result ofGsonFactory.getDefaultInstance().Methods in com.google.api.client.json.gson with annotations of type BetaModifier and TypeMethodDescriptionstatic GsonFactoryGsonFactory.getDefaultInstance()Beta
Returns a global thread-safe instance. -
Uses of Beta in com.google.api.client.json.rpc2
Classes in com.google.api.client.json.rpc2 with annotations of type Beta -
Uses of Beta in com.google.api.client.json.webtoken
Methods in com.google.api.client.json.webtoken with annotations of type BetaModifier and TypeMethodDescriptionfinal X509CertificateJsonWebSignature.verifySignature()Beta
Verifies the signature of the content using the certificate chain embedded in the signature.final X509CertificateJsonWebSignature.verifySignature(X509TrustManager trustManager) Beta
Verifies the signature of the content using the certificate chain embedded in the signature. -
Uses of Beta in com.google.api.client.protobuf
Classes in com.google.api.client.protobuf with annotations of type Beta -
Uses of Beta in com.google.api.client.test.util.store
Classes in com.google.api.client.test.util.store with annotations of type Beta -
Uses of Beta in com.google.api.client.testing.http
Classes in com.google.api.client.testing.http with annotations of type Beta -
Uses of Beta in com.google.api.client.testing.http.apache
Classes in com.google.api.client.testing.http.apache with annotations of type BetaModifier and TypeClassDescriptionclass -
Uses of Beta in com.google.api.client.testing.http.javanet
Classes in com.google.api.client.testing.http.javanet with annotations of type Beta -
Uses of Beta in com.google.api.client.testing.json
Classes in com.google.api.client.testing.json with annotations of type BetaModifier and TypeClassDescriptionclassclassclass -
Uses of Beta in com.google.api.client.testing.json.webtoken
Classes in com.google.api.client.testing.json.webtoken with annotations of type Beta -
Uses of Beta in com.google.api.client.testing.util
Classes in com.google.api.client.testing.util with annotations of type Beta -
Uses of Beta in com.google.api.client.util
Classes in com.google.api.client.util with annotations of type BetaMethods in com.google.api.client.util with annotations of type BetaModifier and TypeMethodDescriptionstatic KeyStoreSecurityUtils.createMtlsKeyStore(InputStream certAndKey) Beta
Create a keystore for mutual TLS with the certificate and private key provided.static SSLContextSslUtils.initSslContext(SSLContext sslContext, KeyStore trustStore, TrustManagerFactory trustManagerFactory, KeyStore mtlsKeyStore, String mtlsKeyStorePassword, KeyManagerFactory keyManagerFactory) Beta
Initializes the SSL context to the trust managers supplied by the trust manager factory for the given trust store, and to the key managers supplied by the key manager factory for the given key store.static HostnameVerifierSslUtils.trustAllHostnameVerifier()Beta
Returns a verifier that trusts all host names.static SSLContextSslUtils.trustAllSSLContext()Beta
Returns an SSL context in which all X.509 certificates are trusted. -
Uses of Beta in com.google.api.client.xml
Classes in com.google.api.client.xml with annotations of type BetaModifier and TypeClassDescriptionclassBeta
Generic XML data that stores all unknown key name/value pairs.classBeta
XML utilities.final classBeta
Thread-safe XML namespace dictionary that provides a one-to-one map of namespace alias to URI.(package private) classclassBeta
XML HTTP parser into an data class of key/value pairs. -
Uses of Beta in com.google.api.client.xml.atom
Classes in com.google.api.client.xml.atom with annotations of type Beta
HttpBackOffUnsuccessfulResponseHandlerinstead.