Package google.registry.util
Class GoogleCredentialsBundle
java.lang.Object
google.registry.util.GoogleCredentialsBundle
- All Implemented Interfaces:
Serializable
Helper class to provide
HttpTransport
, JsonFactory
and HttpRequestInitializer
for a given GoogleCredentials
. These classes are normally needed
for creating the instance of a GCP client.- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
GoogleCredentialsBundle
(com.google.auth.oauth2.GoogleCredentials googleCredentials) -
Method Summary
Modifier and TypeMethodDescriptionstatic GoogleCredentialsBundle
create
(com.google.auth.oauth2.GoogleCredentials credentials) Creates aGoogleCredentialsBundle
instance from givenGoogleCredentials
.com.google.auth.oauth2.GoogleCredentials
Returns the sameGoogleCredentials
used to create this object.com.google.api.client.http.HttpRequestInitializer
Returns the instance ofHttpRequestInitializer
.com.google.api.client.http.HttpTransport
Returns the instance ofHttpTransport
.com.google.api.client.json.JsonFactory
Returns the instance ofJsonFactory
.Returns the service account email address of the underlyingGoogleCredentials
, if possible.
-
Constructor Details
-
GoogleCredentialsBundle
protected GoogleCredentialsBundle(com.google.auth.oauth2.GoogleCredentials googleCredentials)
-
-
Method Details
-
create
Creates aGoogleCredentialsBundle
instance from givenGoogleCredentials
. -
serviceAccount
Returns the service account email address of the underlyingGoogleCredentials
, if possible. -
getGoogleCredentials
public com.google.auth.oauth2.GoogleCredentials getGoogleCredentials()Returns the sameGoogleCredentials
used to create this object. -
getHttpTransport
public com.google.api.client.http.HttpTransport getHttpTransport()Returns the instance ofHttpTransport
. -
getJsonFactory
public com.google.api.client.json.JsonFactory getJsonFactory()Returns the instance ofJsonFactory
. -
getHttpRequestInitializer
public com.google.api.client.http.HttpRequestInitializer getHttpRequestInitializer()Returns the instance ofHttpRequestInitializer
.
-