/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.machine.server; import com.google.inject.AbstractModule; import com.google.inject.name.Names; import org.eclipse.che.api.machine.server.event.MachineProcessMessenger; import org.eclipse.che.api.machine.server.event.MachineStateJsonRpcMessenger; import org.eclipse.che.api.machine.server.event.MachineStateMessenger; import org.eclipse.che.api.machine.shared.Constants; /** * Guice container configuration file. Replaces old REST application composers and servlet context listeners. * * @author Alexander Garagatyi */ public class MachineModule extends AbstractModule { @Override protected void configure() { bind(MachineStateMessenger.class).asEagerSingleton(); bind(MachineStateJsonRpcMessenger.class).asEagerSingleton(); bind(MachineProcessMessenger.class).asEagerSingleton(); bindConstant().annotatedWith(Names.named("machine.extension.api_port")).to(Constants.WS_AGENT_PORT); } }