@SuppressWarnings("rawtypes") /* Guice lacks support for template type literals.*/
@Override
public void configure() {
bind(new TypeLiteral<HeaderHandler>() {}).to(new TypeLiteral<DfaAxisHeaderHandler>() {});
install(new AxisModule());
install(new DfaModule());
install(new DfaSoapModule());
configureConfigurations(this.getClass().getResource("conf/props/build.properties"));
bind(LoginTokensHelper.class).to(DfaAxisLoginTokensHelper.class);
bind(TokenExpirationDetector.class).to(DfaAxisTokenExpirationDetector.class);
}