@@ -153,52 +153,62 @@ public static class Builder {
153
153
private String universeDomain ;
154
154
private RefreshStrategy refreshStrategy = RefreshStrategy .BACKGROUND ;
155
155
156
+ /** Chained setter for TargetPrinciple field. */
156
157
public Builder withTargetPrincipal (String targetPrincipal ) {
157
158
this .targetPrincipal = targetPrincipal ;
158
159
return this ;
159
160
}
160
161
162
+ /** Chained setter for GoogleCredentialsSupplier field. */
161
163
public Builder withGoogleCredentialsSupplier (
162
164
Supplier <GoogleCredentials > googleCredentialsSupplier ) {
163
165
this .googleCredentialsSupplier = googleCredentialsSupplier ;
164
166
return this ;
165
167
}
166
168
169
+ /** Chained setter for GoogleCredentials field. */
167
170
public Builder withGoogleCredentials (GoogleCredentials googleCredentials ) {
168
171
this .googleCredentials = googleCredentials ;
169
172
return this ;
170
173
}
171
174
175
+ /** Chained setter for GoogleCredentialsPath field. */
172
176
public Builder withGoogleCredentialsPath (String googleCredentialsPath ) {
173
177
this .googleCredentialsPath = googleCredentialsPath ;
174
178
return this ;
175
179
}
176
180
181
+ /** Chained setter for Delegates field. */
177
182
public Builder withDelegates (List <String > delegates ) {
178
183
this .delegates = delegates ;
179
184
return this ;
180
185
}
181
186
187
+ /** Chained setter for AdminRootUrl field. */
182
188
public Builder withAdminRootUrl (String adminRootUrl ) {
183
189
this .adminRootUrl = adminRootUrl ;
184
190
return this ;
185
191
}
186
192
193
+ /** Chained setter for AdminServicePath field. */
187
194
public Builder withAdminServicePath (String adminServicePath ) {
188
195
this .adminServicePath = adminServicePath ;
189
196
return this ;
190
197
}
191
198
199
+ /** Chained setter for AdminQuotaProject field. */
192
200
public Builder withAdminQuotaProject (String adminQuotaProject ) {
193
201
this .adminQuotaProject = adminQuotaProject ;
194
202
return this ;
195
203
}
196
204
205
+ /** Chained setter for UniverseDomain field. */
197
206
public Builder withUniverseDomain (String universeDomain ) {
198
207
this .universeDomain = universeDomain ;
199
208
return this ;
200
209
}
201
210
211
+ /** Chained setter for RefreshStrategy field. */
202
212
public Builder withRefreshStrategy (RefreshStrategy refreshStrategy ) {
203
213
this .refreshStrategy = refreshStrategy ;
204
214
return this ;
0 commit comments