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

io.grpc.alts.internal.AltsClientOptions Maven / Gradle / Ivy

There is a newer version: 1.68.1
Show newest version
/*
 * Copyright 2018 The gRPC Authors
 *
 * 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 io.grpc.alts.internal;

import com.google.common.collect.ImmutableList;
import javax.annotation.Nullable;

/** Handshaker options for creating ALTS client channel. */
public final class AltsClientOptions extends AltsHandshakerOptions {

  // targetName is the server service account name for secure name checking.
  @Nullable private final String targetName;
  // targetServiceAccounts contains a list of expected target service accounts. One of these service
  // accounts should match peer service account in the handshaker result. Otherwise, the handshake
  // fails.
  private final ImmutableList targetServiceAccounts;

  private AltsClientOptions(Builder builder) {
    super(builder.rpcProtocolVersions);
    targetName = builder.targetName;
    targetServiceAccounts = builder.targetServiceAccounts;
  }

  public String getTargetName() {
    return targetName;
  }

  public ImmutableList getTargetServiceAccounts() {
    return targetServiceAccounts;
  }

  /** Builder for AltsClientOptions. */
  public static final class Builder {

    @Nullable private String targetName;
    @Nullable private RpcProtocolVersions rpcProtocolVersions;
    private ImmutableList targetServiceAccounts = ImmutableList.of();

    public Builder setTargetName(String targetName) {
      this.targetName = targetName;
      return this;
    }

    public Builder setRpcProtocolVersions(RpcProtocolVersions rpcProtocolVersions) {
      this.rpcProtocolVersions = rpcProtocolVersions;
      return this;
    }

    public Builder setTargetServiceAccounts(ImmutableList targetServiceAccounts) {
      this.targetServiceAccounts = targetServiceAccounts;
      return this;
    }

    public AltsClientOptions build() {
      return new AltsClientOptions(this);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy