@Beta public static class MockGoogleJsonClient.Builder extends AbstractGoogleJsonClient.Builder
Constructor and Description |
---|
Builder(HttpTransport transport,
JsonFactory jsonFactory,
String rootUrl,
String servicePath,
HttpRequestInitializer httpRequestInitializer,
boolean legacyDataWrapper) |
Modifier and Type | Method and Description |
---|---|
MockGoogleJsonClient |
build()
Builds a new instance of
AbstractGoogleClient . |
MockGoogleJsonClient.Builder |
setApplicationName(String applicationName)
Sets the application name to be used in the UserAgent header of each request or
null
for none. |
MockGoogleJsonClient.Builder |
setGoogleClientRequestInitializer(GoogleClientRequestInitializer googleClientRequestInitializer)
Sets the Google client request initializer or
null for none. |
MockGoogleJsonClient.Builder |
setHttpRequestInitializer(HttpRequestInitializer httpRequestInitializer)
Sets the HTTP request initializer or
null for none. |
MockGoogleJsonClient.Builder |
setRootUrl(String rootUrl)
Sets the URL-encoded root URL of the service, for example
https://www.googleapis.com/
. |
MockGoogleJsonClient.Builder |
setServicePath(String servicePath)
Sets the URL-encoded service path of the service, for example
"tasks/v1/" . |
MockGoogleJsonClient.Builder |
setSuppressAllChecks(boolean suppressAllChecks)
Suppresses all discovery pattern and required parameter checks.
|
MockGoogleJsonClient.Builder |
setSuppressPatternChecks(boolean suppressPatternChecks)
Sets whether discovery pattern checks should be suppressed on required parameters.
|
MockGoogleJsonClient.Builder |
setSuppressRequiredParameterChecks(boolean suppressRequiredParameterChecks)
Sets whether discovery required parameter checks should be suppressed.
|
getJsonFactory, getObjectParser
getApplicationName, getGoogleClientRequestInitializer, getHttpRequestInitializer, getRootUrl, getServicePath, getSuppressPatternChecks, getSuppressRequiredParameterChecks, getTransport, setBatchPath
public Builder(HttpTransport transport, JsonFactory jsonFactory, String rootUrl, String servicePath, HttpRequestInitializer httpRequestInitializer, boolean legacyDataWrapper)
transport
- HTTP transportjsonFactory
- JSON factoryrootUrl
- root URL of the serviceservicePath
- service pathhttpRequestInitializer
- HTTP request initializer or null
for nonelegacyDataWrapper
- whether using the legacy data wrapper in responsespublic MockGoogleJsonClient build()
AbstractGoogleClient.Builder
AbstractGoogleClient
.build
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setRootUrl(String rootUrl)
AbstractGoogleClient.Builder
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.
setRootUrl
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setServicePath(String servicePath)
AbstractGoogleClient.Builder
"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.
setServicePath
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setGoogleClientRequestInitializer(GoogleClientRequestInitializer googleClientRequestInitializer)
AbstractGoogleClient.Builder
null
for none.
Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.
setGoogleClientRequestInitializer
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setHttpRequestInitializer(HttpRequestInitializer httpRequestInitializer)
AbstractGoogleClient.Builder
null
for none.
Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.
setHttpRequestInitializer
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setApplicationName(String applicationName)
AbstractGoogleClient.Builder
null
for none.
Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.
setApplicationName
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setSuppressPatternChecks(boolean suppressPatternChecks)
AbstractGoogleClient.Builder
Default value is false
.
Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.
setSuppressPatternChecks
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setSuppressRequiredParameterChecks(boolean suppressRequiredParameterChecks)
AbstractGoogleClient.Builder
Default value is false
.
Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.
setSuppressRequiredParameterChecks
in class AbstractGoogleJsonClient.Builder
public MockGoogleJsonClient.Builder setSuppressAllChecks(boolean suppressAllChecks)
AbstractGoogleClient.Builder
Overriding is only supported for the purpose of calling the super implementation and changing the return type, but nothing else.
setSuppressAllChecks
in class AbstractGoogleJsonClient.Builder
Copyright © 2010–2020 Google. All rights reserved.