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

com.google.auth.oauth2.SystemEnvironmentProvider Maven / Gradle / Ivy

There is a newer version: 1.30.0
Show newest version
package com.google.auth.oauth2;

import java.io.Serializable;

/** Represents the default system environment provider. */
class SystemEnvironmentProvider implements EnvironmentProvider, Serializable {
  static final SystemEnvironmentProvider INSTANCE = new SystemEnvironmentProvider();
  private static final long serialVersionUID = -4698164985883575244L;

  private SystemEnvironmentProvider() {}

  @Override
  public String getEnv(String name) {
    return System.getenv(name);
  }

  public static SystemEnvironmentProvider getInstance() {
    return INSTANCE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy