Search in sources :

Example 1 with AdWordsModule

use of com.google.api.ads.adwords.lib.AdWordsModule in project googleads-java-lib by googleads.

the class AdWordsJaxWsModule method configure.

@Override
public void configure() {
    bind(new TypeLiteral<HeaderHandler<AdWordsSession, AdWordsServiceDescriptor>>() {
    }).to(new TypeLiteral<AdWordsJaxWsHeaderHandler>() {
    });
    install(new JaxWsModule());
    install(new AdWordsModule());
    install(new AdWordsSoapModule());
    configureConfigurations(this.getClass().getResource("conf/props/build.properties"));
}
Also used : TypeLiteral(com.google.inject.TypeLiteral) AdWordsModule(com.google.api.ads.adwords.lib.AdWordsModule) AdWordsSoapModule(com.google.api.ads.adwords.lib.AdWordsSoapModule) AdWordsSession(com.google.api.ads.adwords.lib.client.AdWordsSession) AdWordsServiceDescriptor(com.google.api.ads.adwords.lib.client.AdWordsServiceDescriptor) JaxWsModule(com.google.api.ads.common.lib.soap.jaxws.JaxWsModule)

Example 2 with AdWordsModule

use of com.google.api.ads.adwords.lib.AdWordsModule in project googleads-java-lib by googleads.

the class AdWordsAxisModule method configure.

@Override
public void configure() {
    bind(new TypeLiteral<AxisSoapHeaderFactory<AdWordsServiceDescriptor>>() {
    }).to(new TypeLiteral<AdWordsAxisSoapHeaderFactory>() {
    });
    bind(new TypeLiteral<HeaderHandler<AdWordsSession, AdWordsServiceDescriptor>>() {
    }).to(new TypeLiteral<AdWordsAxisHeaderHandler>() {
    });
    install(new AxisModule());
    install(new AdWordsModule());
    install(new AdWordsSoapModule());
    configureConfigurations(this.getClass().getResource("conf/props/build.properties"));
}
Also used : TypeLiteral(com.google.inject.TypeLiteral) AdWordsModule(com.google.api.ads.adwords.lib.AdWordsModule) AdWordsSoapModule(com.google.api.ads.adwords.lib.AdWordsSoapModule) AdWordsSession(com.google.api.ads.adwords.lib.client.AdWordsSession) AdWordsServiceDescriptor(com.google.api.ads.adwords.lib.client.AdWordsServiceDescriptor) AxisModule(com.google.api.ads.common.lib.soap.axis.AxisModule)

Example 3 with AdWordsModule

use of com.google.api.ads.adwords.lib.AdWordsModule in project googleads-java-lib by googleads.

the class AdWordsLibConfigurationIntegrationTest method testPropertyFileIncludedInConfig.

@Test
public void testPropertyFileIncludedInConfig() throws Exception {
    File adsPropertiesFile = createPropertiesFile();
    System.setProperty("user.home", adsPropertiesFile.getParentFile().getAbsolutePath());
    AdWordsLibConfiguration config = Guice.createInjector(new AdWordsModule()).getInstance(AdWordsLibConfiguration.class);
    assertFalse(config.isAutoRefreshOAuth2TokenEnabled());
}
Also used : AdWordsModule(com.google.api.ads.adwords.lib.AdWordsModule) File(java.io.File) Test(org.junit.Test)

Aggregations

AdWordsModule (com.google.api.ads.adwords.lib.AdWordsModule)3 AdWordsSoapModule (com.google.api.ads.adwords.lib.AdWordsSoapModule)2 AdWordsServiceDescriptor (com.google.api.ads.adwords.lib.client.AdWordsServiceDescriptor)2 AdWordsSession (com.google.api.ads.adwords.lib.client.AdWordsSession)2 TypeLiteral (com.google.inject.TypeLiteral)2 AxisModule (com.google.api.ads.common.lib.soap.axis.AxisModule)1 JaxWsModule (com.google.api.ads.common.lib.soap.jaxws.JaxWsModule)1 File (java.io.File)1 Test (org.junit.Test)1