Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientModule.java')
-rw-r--r--plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientModule.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientModule.java b/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientModule.java
deleted file mode 100644
index 195035fda66..00000000000
--- a/plugins/org.eclipse.osee.account.rest.client/src/org/eclipse/osee/account/rest/client/internal/AccountClientModule.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2013 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.account.rest.client.internal;
-
-import java.util.Map;
-import org.eclipse.osee.account.rest.client.AccountClient;
-import org.eclipse.osee.jaxrs.client.JaxRsClientUtils;
-import com.google.inject.AbstractModule;
-import com.google.inject.TypeLiteral;
-import com.google.inject.spi.InjectionListener;
-import com.google.inject.spi.TypeEncounter;
-import com.google.inject.spi.TypeListener;
-
-/**
- * @author Roberto E. Escobar
- */
-public class AccountClientModule extends AbstractModule {
-
- private final Map<String, Object> config;
-
- public AccountClientModule(Map<String, Object> config) {
- super();
- this.config = config;
- }
-
- @Override
- protected void configure() {
- bind(AccountClient.class).to(AccountClientImpl.class);
- TypeListener listener = new TypeListener() {
-
- @Override
- public <I> void hear(TypeLiteral<I> type, TypeEncounter<I> encounter) {
- encounter.register(new InjectionListener<I>() {
-
- @Override
- public void afterInjection(I injectee) {
- AccountClientImpl client = (AccountClientImpl) injectee;
- client.start(config);
- }
- });
- }
- };
- bindListener(JaxRsClientUtils.subtypeOf(AccountClient.class), listener);
- }
-
-}

Back to the top