Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Universe Domain Support for Apiary Clients #19934

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Java libraries for Google APIs.",
"generator": "java1_15",
"releaseVersion": "2.0.0",
"baseClientLibrary": "2.2.0",
"baseClientLibrary": "2.4.0",
"oauthClientLibrary": "1.35.0",
"httpClientLibrary": "1.43.3",
"gsonVersion": "2.10.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,5 +247,10 @@ public class {{ api.className }} extends com.google.api.client.googleapis.servic
com.google.api.client.googleapis.services.GoogleClientRequestInitializer googleClientRequestInitializer) {
return (Builder) super.setGoogleClientRequestInitializer(googleClientRequestInitializer);
}

@Override
public Builder setUniverseDomain(String universeDomain) {
return (Builder) super.setUniverseDomain(universeDomain);
}
}
}{% endcollapsenewlines %}