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

com.google.cloud.compute.ComputeOptions Maven / Gradle / Ivy

/*
 * Copyright 2016 Google Inc. All Rights Reserved.
 *
 * 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.cloud.compute;

import com.google.cloud.HttpServiceOptions;
import com.google.cloud.compute.spi.ComputeRpc;
import com.google.cloud.compute.spi.ComputeRpcFactory;
import com.google.cloud.compute.spi.DefaultComputeRpc;
import com.google.common.collect.ImmutableSet;

import java.util.Set;

public class ComputeOptions extends HttpServiceOptions {

  private static final String COMPUTE_SCOPE = "https://www.googleapis.com/auth/compute";
  private static final Set SCOPES = ImmutableSet.of(COMPUTE_SCOPE);
  private static final long serialVersionUID = 5074781985597996770L;

  public static class DefaultComputeFactory implements ComputeFactory {

    private static final ComputeFactory INSTANCE = new DefaultComputeFactory();

    @Override
    public Compute create(ComputeOptions options) {
      return new ComputeImpl(options);
    }
  }

  public static class DefaultComputeRpcFactory implements ComputeRpcFactory {

    private static final ComputeRpcFactory INSTANCE = new DefaultComputeRpcFactory();

    @Override
    public ComputeRpc create(ComputeOptions options) {
      return new DefaultComputeRpc(options);
    }
  }

  public static class Builder extends
      HttpServiceOptions.Builder {

    private Builder() {
    }

    private Builder(ComputeOptions options) {
      super(options);
    }

    @Override
    public ComputeOptions build() {
      return new ComputeOptions(this);
    }
  }

  private ComputeOptions(Builder builder) {
    super(ComputeFactory.class, ComputeRpcFactory.class, builder);
  }

  @Override
  protected ComputeFactory defaultServiceFactory() {
    return DefaultComputeFactory.INSTANCE;
  }

  @Override
  protected ComputeRpcFactory defaultRpcFactory() {
    return DefaultComputeRpcFactory.INSTANCE;
  }

  @Override
  protected Set scopes() {
    return SCOPES;
  }

  @Override
  public Builder toBuilder() {
    return new Builder(this);
  }

  @Override
  public int hashCode() {
    return baseHashCode();
  }

  @Override
  public boolean equals(Object obj) {
    if (!(obj instanceof ComputeOptions)) {
      return false;
    }
    ComputeOptions other = (ComputeOptions) obj;
    return baseEquals(other);
  }

  public static ComputeOptions defaultInstance() {
    return builder().build();
  }

  public static Builder builder() {
    return new Builder();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy