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

com.google.api.ads.common.lib.auth.AuthModule Maven / Gradle / Ivy

Go to download

Client library for Java for accessing ads APIs including DFP. If you want to use this library, you must also include another Maven artifact to specify which framework you would like to use it with. For example, to use DFP with Axis, you should include the "dfp-axis" artifact.

There is a newer version: 5.7.0
Show newest version
// Copyright 2012 Google Inc. All Rights Reserved.

package com.google.api.ads.common.lib.auth;

import com.google.inject.AbstractModule;
import com.google.inject.name.Names;

/**
 * Module for authentication.
 */
public class AuthModule extends AbstractModule {

  public static final Long DEFAULT_OAUTH2_REFRESH_WINDOW = 60L;

  /**
   * Default constructor.
   */
  public AuthModule() {
  }

  @Override
  protected void configure() {
    bindConstant().annotatedWith(Names.named("requestMethod")).to("POST");
    bindConstant()
        .annotatedWith(Names.named("oAuth2RefreshWindow")).to(DEFAULT_OAUTH2_REFRESH_WINDOW);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy