org.apache.hupa.client.ioc.AppGinModule.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.hupa.client.ioc.AppGinModule.java

Source

/****************************************************************
 * Licensed to the Apache Software Foundation (ASF) under one   *
 * or more contributor license agreements.  See the NOTICE file *
 * distributed with this work for additional information        *
 * regarding copyright ownership.  The ASF licenses this file   *
 * to you 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 org.apache.hupa.client.ioc;

import gwtTestSelection.shared.InstrumentationLoggerProvider;
import java.util.logging.Logger;

import org.apache.hupa.client.HupaController;
import org.apache.hupa.client.activity.AddressListActivity;
import org.apache.hupa.client.activity.ComposeActivity;
import org.apache.hupa.client.activity.ComposeToolBarActivity;
import org.apache.hupa.client.activity.ContactPropertiesActivity;
import org.apache.hupa.client.activity.ContactsListActivity;
import org.apache.hupa.client.activity.FolderListActivity;
import org.apache.hupa.client.activity.LabelListActivity;
import org.apache.hupa.client.activity.LabelPropertiesActivity;
import org.apache.hupa.client.activity.LoginActivity;
import org.apache.hupa.client.activity.LogoActivity;
import org.apache.hupa.client.activity.MessageContentActivity;
import org.apache.hupa.client.activity.MessageListActivity;
import org.apache.hupa.client.activity.MessageListFooterActivity;
import org.apache.hupa.client.activity.NavigationActivity;
import org.apache.hupa.client.activity.NotificationActivity;
import org.apache.hupa.client.activity.SearchBoxActivity;
import org.apache.hupa.client.activity.SettingNavActivity;
import org.apache.hupa.client.activity.StatusActivity;
import org.apache.hupa.client.activity.ToolBarActivity;
import org.apache.hupa.client.activity.TopBarActivity;
import org.apache.hupa.client.mapper.AddressListActivityMapper;
import org.apache.hupa.client.mapper.AppPlaceHistoryMapper;
import org.apache.hupa.client.mapper.CachingTopBarActivityMapper;
import org.apache.hupa.client.mapper.ComposeActivityMapper;
import org.apache.hupa.client.mapper.ComposeToolBarActivityMapper;
import org.apache.hupa.client.mapper.ContactPropertiesActivityMapper;
import org.apache.hupa.client.mapper.ContactsListActivityMapper;
import org.apache.hupa.client.mapper.FolderListActivityMapper;
import org.apache.hupa.client.mapper.LabelListActivityMapper;
import org.apache.hupa.client.mapper.LabelPropertiesActivityMapper;
import org.apache.hupa.client.mapper.LoginActivityMapper;
import org.apache.hupa.client.mapper.LogoActivityMapper;
import org.apache.hupa.client.mapper.MessageContentActivityMapper;
import org.apache.hupa.client.mapper.MessageListActivityMapper;
import org.apache.hupa.client.mapper.MessageListFooterActivityMapper;
import org.apache.hupa.client.mapper.NavigationActivityMapper;
import org.apache.hupa.client.mapper.NotificationActivityMapper;
import org.apache.hupa.client.mapper.SearchBoxActivityMapper;
import org.apache.hupa.client.mapper.SettingNavActivityMapper;
import org.apache.hupa.client.mapper.StatusActivityMapper;
import org.apache.hupa.client.mapper.ToolBarActivityMapper;
import org.apache.hupa.client.place.DefaultPlace;
import org.apache.hupa.client.rf.HupaRequestFactory;
import org.apache.hupa.client.storage.AppCacheHTML5;
import org.apache.hupa.client.ui.AddressListView;
import org.apache.hupa.client.ui.ComposeToolBarView;
import org.apache.hupa.client.ui.ComposeView;
import org.apache.hupa.client.ui.ContactPropertiesView;
import org.apache.hupa.client.ui.ContactsListView;
import org.apache.hupa.client.ui.FolderListView;
import org.apache.hupa.client.ui.HupaLayout;
import org.apache.hupa.client.ui.HupaLayoutable;
import org.apache.hupa.client.ui.HupaPlugins;
import org.apache.hupa.client.ui.HupaPlugins.HupaDefaultPlugins;
import org.apache.hupa.client.ui.LabelListView;
import org.apache.hupa.client.ui.LabelPropertiesView;
import org.apache.hupa.client.ui.LoginLayout;
import org.apache.hupa.client.ui.LoginLayoutable;
import org.apache.hupa.client.ui.LoginView;
import org.apache.hupa.client.ui.LogoView;
import org.apache.hupa.client.ui.MessageContentView;
import org.apache.hupa.client.ui.MessageListFooterView;
import org.apache.hupa.client.ui.MessageListView;
import org.apache.hupa.client.ui.MessagesCellTable;
import org.apache.hupa.client.ui.NavigationView;
import org.apache.hupa.client.ui.NotificationView;
import org.apache.hupa.client.ui.SearchBoxView;
import org.apache.hupa.client.ui.SettingNavView;
import org.apache.hupa.client.ui.StatusView;
import org.apache.hupa.client.ui.ToolBarView;
import org.apache.hupa.client.ui.TopBarView;
import org.apache.hupa.shared.domain.User;
import org.apache.hupa.shared.events.LogoutEvent;
import org.apache.hupa.shared.storage.AppCache;

import com.google.gwt.activity.shared.ActivityManager;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.event.shared.SimpleEventBus;
import com.google.gwt.http.client.Request;
import com.google.gwt.http.client.RequestCallback;
import com.google.gwt.http.client.Response;
import com.google.gwt.inject.client.AbstractGinModule;
import com.google.gwt.inject.client.GinModules;
import com.google.gwt.place.shared.PlaceController;
import com.google.gwt.place.shared.PlaceHistoryHandler;
import com.google.gwt.place.shared.PlaceHistoryMapper;
import com.google.gwt.user.cellview.client.CellTree;
import com.google.inject.Provides;
import com.google.inject.Singleton;
import com.google.inject.name.Named;
import com.google.web.bindery.requestfactory.gwt.client.DefaultRequestTransport;
import com.google.web.bindery.requestfactory.shared.RequestFactory;

@SuppressWarnings("deprecation")
public class AppGinModule extends AbstractGinModule {

    static {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e6_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e60x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e60x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e60x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e60x30x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e60x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0a8b3e60x2");
    }

    public AppGinModule() {
        InstrumentationLoggerProvider.get().instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a67aa8b32");
    }

    /**
      * Gin implementation of our AppInjector
      */
    @GinModules(AppGinModule.class)
    public static interface AppGinjector extends AppInjector {
    }

    public static Logger logger = Logger.getLogger(AppGinModule.class.getName());

    @Override
    protected void configure() {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x1");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x00x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0");
        // Views
        bind(HupaLayoutable.class).to(HupaLayout.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x10x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x10x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x10x0");
        bind(LoginLayoutable.class).to(LoginLayout.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x20x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x20x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2");
        // Activities
        bind(LoginActivity.Displayable.class).to(LoginView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x30x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x30x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x30x0");
        bind(TopBarActivity.Displayable.class).to(TopBarView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(LogoActivity.Displayable.class).to(LogoView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x50x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x5_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x50x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x50x0");
        bind(NotificationActivity.Displayable.class).to(NotificationView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x60x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x60x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x60x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x6_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(NavigationActivity.Displayable.class).to(NavigationView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x7_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x70x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x70x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x70x00x00x0");
        bind(ToolBarActivity.Displayable.class).to(ToolBarView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x8_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x80x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x80x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x80x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0");
        // bind(FolderListActivity.Displayable.class).to(FolderListView.class);
        bind(MessageListActivity.Displayable.class).to(MessageListView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x90x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x90x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x9_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x90x00x0");
        bind(MessageListFooterActivity.Displayable.class).to(MessageListFooterView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xa0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xa0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xa_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xa0x00x00x0");
        bind(MessageContentActivity.Displayable.class).to(MessageContentView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xb0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xb_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xb0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xb0x00x00x0");
        bind(StatusActivity.Displayable.class).to(StatusView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xc0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xc0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xc_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xc0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(ComposeToolBarActivity.Displayable.class).to(ComposeToolBarView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xd0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xd_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xd0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xd0x0");
        bind(ComposeActivity.Displayable.class).to(ComposeView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xe_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xe0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xe0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xe0x00x0");
        bind(SearchBoxActivity.Displayable.class).to(SearchBoxView.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xf0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xf0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xf_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20xf0x00x00x0");
        bind(LabelListActivity.Displayable.class).to(LabelListView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x100x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x10_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x100x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x100x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0");
        bind(SettingNavActivity.Displayable.class).to(SettingNavView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x110x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x11_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x110x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x110x00x00x0");
        bind(LabelPropertiesActivity.Displayable.class).to(LabelPropertiesView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x120x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x120x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x12_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x120x0");
        bind(ContactsListActivity.Displayable.class).to(ContactsListView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x130x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x130x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x130x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x13_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(ContactPropertiesActivity.Displayable.class).to(ContactPropertiesView.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x140x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x140x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x140x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x14");
        bind(AddressListActivity.Displayable.class).to(AddressListView.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x150x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x15_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x150x00x0");
        bind(LoginActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x160x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x16_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x160x00x0");
        bind(TopBarActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x170x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x170x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x17");
        bind(LogoActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x18_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x180x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x180x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0");
        bind(NotificationActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x190x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x19_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x190x0");
        bind(NavigationActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1a0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1a0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1a");
        bind(ToolBarActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1b0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1b0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1b");
        bind(FolderListActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1c0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1c0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1c_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(MessageListActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1d0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1d_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1d0x00x0");
        bind(ComposeToolBarActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1e0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1e0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1e");
        bind(ComposeActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1f0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1f0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x1f");
        bind(SearchBoxActivity.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x200x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x200x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x20_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(LabelListActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x21_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x210x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x210x0");
        bind(SettingNavActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x22_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x220x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x220x00x0");
        bind(LabelPropertiesActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x230x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x230x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x23");
        bind(ContactsListActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x240x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x240x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x24_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(ContactPropertiesActivity.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x25_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x250x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x250x00x0");
        bind(AddressListActivity.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x260x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x260x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x260x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x26");
        bind(FolderListActivity.Displayable.class).to(FolderListView.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x270x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x27_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x270x0");
        bind(MessagesCellTable.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x280x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x28_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x280x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x280x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(CellTree.Resources.class).to(CellTree.BasicResources.class).in(Singleton.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x290x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x290x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x29_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x290x00x00x0");
        // Places
        bind(PlaceHistoryMapper.class).to(AppPlaceHistoryMapper.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2a0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2a0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2a_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2a0x00x0");
        bind(EventBus.class).to(SimpleEventBus.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2b0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2b0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2b");
        bind(HupaController.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2c0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2c0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2c_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2c0x00x0");
        bind(AppCache.class).to(AppCacheHTML5.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2d0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2d0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2d0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2d");
        bind(RequestFactory.class).to(HupaRequestFactory.class).in(Singleton.class);

        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2e0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2e_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2e0x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9be8533f0x20x2e0x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x1");
        bind(HupaPlugins.class).to(HupaDefaultPlugins.class).in(Singleton.class);
    }

    @Provides
    @Singleton
    @Named("AddressListRegion")
    public ActivityManager getAddressListActivityMapper(AddressListActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf799");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x1");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae3cbf7990x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("ContactsListRegion")
    public ActivityManager getContactsListActivityMapper(ContactsListActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x20x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a78d8feab0x40x00x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("ContactPropertiesRegion")
    public ActivityManager getContactPropertiesActivityMapper(ContactPropertiesActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa1");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x4");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ac64a9aa10x40x00x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("LabelListRegion")
    public ActivityManager getLabelListActivityMapper(LabelListActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x4");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb5");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59af2719eb50x40x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("LabelPropertiesRegion")
    public ActivityManager getLabelPropertiesActivityMapper(LabelPropertiesActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x4");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7da50acb0x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("SettingNavRegion")
    public ActivityManager getSettingNavActivityMapper(SettingNavActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x2");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae0b09e7a0x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("LoginPage")
    public ActivityManager getLoginActivityMapper(LoginActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x30x0");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59abe7eeb9f0x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("TopBarRegion")
    public ActivityManager getTopBarActivityMapper(CachingTopBarActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc89");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x0");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a9524fc890x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("LogoRegion")
    public ActivityManager getLogoActivityMapper(LogoActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x4");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59adf29101d0x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("NotificationRegion")
    public ActivityManager getNotificationActivityMapper(NotificationActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x2");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd6");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a825d5fd60x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("NavigationRegion")
    public ActivityManager getNavigationActivityMapper(NavigationActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b946");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x0");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a8278b9460x40x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("ToolBarRegion")
    public ActivityManager getToolBarActivityMapper(ToolBarActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x20x0");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab5d89a7c0x40x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("FolderListRegion")
    public ActivityManager getFolderListActivityMapper(FolderListActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a2");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ab927a7a20x40x00x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("MessageListRegion")
    public ActivityManager getMessageListActivityMapper(MessageListActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x20x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a7a3617cd0x40x00x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("MessageListFooterRegion")
    public ActivityManager getMessageListFooterActivityMapper(MessageListFooterActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b90x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b90x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b90x30x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b9");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b90x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b90x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a947cd8b90x40x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("MessageContentRegion")
    public ActivityManager getMessageContentActivityMapper(MessageContentActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c0x30x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ae45c5d6c0x40x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("StatusRegion")
    public ActivityManager getStatusActivityMapper(StatusActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x1");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa837eb0b0x40x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("ComposeRegion")
    public ActivityManager getComposeActivityMapper(ComposeActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x0");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a828d12af0x40x00x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("ComposeToolBarRegion")
    public ActivityManager getComposeToolBarActivityMapper(ComposeToolBarActivityMapper activityMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d700x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d700x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d700x4");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d70");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d700x40x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d700x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59ad90f0d700x40x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    @Named("SearchBoxRegion")
    public ActivityManager getSearchBoxActivityMapper(SearchBoxActivityMapper activityMapper, EventBus eventBus) {
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a0x4");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a89c58c5a0x40x00x00x0");
        return new ActivityManager(activityMapper, eventBus);
    }

    @Provides
    @Singleton
    public PlaceController getPlaceController(EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x1");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c6");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x30x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x30x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59a2e98d2c60x30x0");
        return new PlaceController(eventBus);
    }

    @Provides
    @Singleton
    public PlaceHistoryHandler getHistoryHandler(PlaceController placeController, PlaceHistoryMapper historyMapper,
            EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x5_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x40x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x00x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x00x10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x00x10x00x0");
        PlaceHistoryHandler historyHandler = new PlaceHistoryHandler(historyMapper);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x10x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x10x00x0");
        historyHandler.register(placeController, eventBus, new DefaultPlace("@"));
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aceca1e4f0x50x2");
        return historyHandler;
    }

    @Provides
    @Singleton
    HupaRequestFactory getRequestFactory(final EventBus eventBus) {
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x10x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x10x0");
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f");
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x00x10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x00x1");
        HupaRequestFactory rf = GWT.create(HupaRequestFactory.class);
        InstrumentationLoggerProvider.get().instrument(
                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1");
        rf.initialize(eventBus, new DefaultRequestTransport() {
            @Override
            protected RequestCallback createRequestCallback(TransportReceiver receiver) {
                InstrumentationLoggerProvider.get().instrument(
                        "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x175546543");
                InstrumentationLoggerProvider.get().instrument(
                        "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x1");
                InstrumentationLoggerProvider.get().instrument(
                        "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x00x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x00x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x00x2");
                final RequestCallback superCallback = super.createRequestCallback(receiver);
                InstrumentationLoggerProvider.get().instrument(
                        "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x0");
                return new RequestCallback() {
                    @Override
                    public void onResponseReceived(Request request, Response response) {
                        InstrumentationLoggerProvider.get().instrument(
                                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f");
                        InstrumentationLoggerProvider.get().instrument(
                                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x4_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x0");
                        InstrumentationLoggerProvider.get().instrument(
                                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x00x0");
                        if (response.getText().contains(User.NOT_FOUND)) {
                            InstrumentationLoggerProvider.get().instrument(
                                    "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x10x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x10x00x00x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x10x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x10x00x00x0");
                            eventBus.fireEvent(new LogoutEvent(null));
                        } else {
                            InstrumentationLoggerProvider.get().instrument(
                                    "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x2");
                            InstrumentationLoggerProvider.get().instrument(
                                    "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x20x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x1163a3f9f0x40x00x20x0");
                            superCallback.onResponseReceived(request, response);
                        }
                    }

                    @Override
                    public void onError(Request request, Throwable exception) {
                        InstrumentationLoggerProvider.get().instrument(
                                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c13");
                        InstrumentationLoggerProvider.get().instrument(
                                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x30x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x3_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x1_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x2_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x20x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x4");
                        InstrumentationLoggerProvider.get().instrument(
                                "org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x40x00x0_____org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x10x00x00x1755465430x30x10x00x12a6f6c130x40x0");
                        superCallback.onError(request, exception);
                    }
                };
            }
        });
        InstrumentationLoggerProvider.get()
                .instrument("org_apache_hupa_client_ioc_AppGinModule_java0x0d734f59aa2505a3f0x20x2");
        return rf;
    }

}