All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firebase.auth.internal.ListOidcProviderConfigsResponse Maven / Gradle / Ivy

/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.firebase.auth.internal;

import com.google.api.client.util.Key;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import com.google.firebase.auth.OidcProviderConfig;
import java.util.List;

/**
 * JSON data binding for ListOAuthIdpConfigsResponse messages sent by Google identity toolkit
 * service.
 */
public final class ListOidcProviderConfigsResponse
    implements ListProviderConfigsResponse {

  @Key("oauthIdpConfigs")
  private List providerConfigs;

  @Key("nextPageToken")
  private String pageToken;

  @VisibleForTesting
  public ListOidcProviderConfigsResponse(
      List providerConfigs, String pageToken) {
    this.providerConfigs = providerConfigs;
    this.pageToken = pageToken;
  }

  public ListOidcProviderConfigsResponse() { }

  @Override
  public List getProviderConfigs() {
    return providerConfigs == null ? ImmutableList.of() : providerConfigs;
  }

  @Override
  public boolean hasProviderConfigs() {
    return providerConfigs != null && !providerConfigs.isEmpty();
  }

  @Override
  public String getPageToken() {
    return Strings.nullToEmpty(pageToken);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy