Class AbstractGoogleClient.Builder (2.1.0)

public abstract static class AbstractGoogleClient.Builder

Builder for AbstractGoogleClient.

Implementation is not thread-safe.

Inheritance

java.lang.Object > AbstractGoogleClient.Builder

Constructors

Builder(HttpTransport transport, String rootUrl, String servicePath, ObjectParser objectParser, HttpRequestInitializer httpRequestInitializer)

protected Builder(HttpTransport transport, String rootUrl, String servicePath, ObjectParser objectParser, HttpRequestInitializer httpRequestInitializer)

Returns an instance of a new builder.

Parameters
NameDescription
transportcom.google.api.client.http.HttpTransport

The transport to use for requests

rootUrlString

root URL of the service. Must end with a "/"

servicePathString

service path

objectParsercom.google.api.client.util.ObjectParser

object parser or null for none

httpRequestInitializercom.google.api.client.http.HttpRequestInitializer

HTTP request initializer or null for none

Methods

build()

public abstract AbstractGoogleClient build()

Builds a new instance of AbstractGoogleClient.

Returns
TypeDescription
AbstractGoogleClient

getApplicationName()

public final String getApplicationName()

Returns the application name to be used in the UserAgent header of each request or null for none.

Returns
TypeDescription
String

getGoogleClientRequestInitializer()

public final GoogleClientRequestInitializer getGoogleClientRequestInitializer()

Returns the Google client request initializer or null for none.

Returns
TypeDescription
GoogleClientRequestInitializer

getHttpRequestInitializer()

public final HttpRequestInitializer getHttpRequestInitializer()

Returns the HTTP request initializer or null for none.

Returns
TypeDescription
com.google.api.client.http.HttpRequestInitializer

getObjectParser()

public ObjectParser getObjectParser()

Returns the object parser or null for none.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Returns
TypeDescription
com.google.api.client.util.ObjectParser

getRootUrl()

public final String getRootUrl()

Returns the URL-encoded root URL of the service, for example https://www.googleapis.com/.

Must be URL-encoded and must end with a "/".

Returns
TypeDescription
String

getServicePath()

public final String getServicePath()

Returns the URL-encoded service path of the service, for example "tasks/v1/".

Must be URL-encoded and must end with a "/" and not begin with a "/". It is allowed to be an empty string "".

Returns
TypeDescription
String

getSuppressPatternChecks()

public final boolean getSuppressPatternChecks()

Returns whether discovery pattern checks should be suppressed on required parameters.

Returns
TypeDescription
boolean

getSuppressRequiredParameterChecks()

public final boolean getSuppressRequiredParameterChecks()

Returns whether discovery required parameter checks should be suppressed.

Returns
TypeDescription
boolean

getTransport()

public final HttpTransport getTransport()

Returns the HTTP transport.

Returns
TypeDescription
com.google.api.client.http.HttpTransport

setApplicationName(String applicationName)

public AbstractGoogleClient.Builder setApplicationName(String applicationName)

Sets the application name to be used in the UserAgent header of each request or null for none.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
applicationNameString
Returns
TypeDescription
AbstractGoogleClient.Builder

setBatchPath(String batchPath)

public AbstractGoogleClient.Builder setBatchPath(String batchPath)

Sets the URL-encoded batch path of the service, for example "batch/tasks".

Parameter
NameDescription
batchPathString
Returns
TypeDescription
AbstractGoogleClient.Builder

setGoogleClientRequestInitializer(GoogleClientRequestInitializer googleClientRequestInitializer)

public AbstractGoogleClient.Builder setGoogleClientRequestInitializer(GoogleClientRequestInitializer googleClientRequestInitializer)

Sets the Google client request initializer or null for none.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
googleClientRequestInitializerGoogleClientRequestInitializer
Returns
TypeDescription
AbstractGoogleClient.Builder

setHttpRequestInitializer(HttpRequestInitializer httpRequestInitializer)

public AbstractGoogleClient.Builder setHttpRequestInitializer(HttpRequestInitializer httpRequestInitializer)

Sets the HTTP request initializer or null for none.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
httpRequestInitializercom.google.api.client.http.HttpRequestInitializer
Returns
TypeDescription
AbstractGoogleClient.Builder

setRootUrl(String rootUrl)

public AbstractGoogleClient.Builder setRootUrl(String rootUrl)

Sets the URL-encoded root URL of the service, for example https://www.googleapis.com/ .

If the specified root URL does not end with a "/" then a "/" is added to the end.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
rootUrlString
Returns
TypeDescription
AbstractGoogleClient.Builder

setServicePath(String servicePath)

public AbstractGoogleClient.Builder setServicePath(String servicePath)

Sets the URL-encoded service path of the service, for example "tasks/v1/".

It is allowed to be an empty string "" or a forward slash "/", if it is a forward slash then it is treated as an empty string. This is determined when the library is generated and normally should not be changed.

If the specified service path does not end with a "/" then a "/" is added to the end. If the specified service path begins with a "/" then the "/" is removed.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
servicePathString
Returns
TypeDescription
AbstractGoogleClient.Builder

setSuppressAllChecks(boolean suppressAllChecks)

public AbstractGoogleClient.Builder setSuppressAllChecks(boolean suppressAllChecks)

Suppresses all discovery pattern and required parameter checks.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
suppressAllChecksboolean
Returns
TypeDescription
AbstractGoogleClient.Builder

setSuppressPatternChecks(boolean suppressPatternChecks)

public AbstractGoogleClient.Builder setSuppressPatternChecks(boolean suppressPatternChecks)

Sets whether discovery pattern checks should be suppressed on required parameters.

Default value is false.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
suppressPatternChecksboolean
Returns
TypeDescription
AbstractGoogleClient.Builder

setSuppressRequiredParameterChecks(boolean suppressRequiredParameterChecks)

public AbstractGoogleClient.Builder setSuppressRequiredParameterChecks(boolean suppressRequiredParameterChecks)

Sets whether discovery required parameter checks should be suppressed.

Default value is false.

Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.

Parameter
NameDescription
suppressRequiredParameterChecksboolean
Returns
TypeDescription
AbstractGoogleClient.Builder