Package org.eclipse.ecf.internal.remoteservices.ui.handlers

Source Code of org.eclipse.ecf.internal.remoteservices.ui.handlers.DisonnectRemoteServicehandler

/*******************************************************************************
* Copyright (c) 2008 Versant Corp.
* 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:
*     Markus Kuppe (mkuppe <at> versant <dot> com) - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.internal.remoteservices.ui.handlers;

import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.internal.remoteservices.ui.RemoteServiceHandlerUtil;
import org.eclipse.osgi.util.NLS;

public class DisonnectRemoteServicehandler extends ConnectionHandler {

  /*
   * (non-Javadoc)
   *
   * @see
   * org.eclipse.ecf.internal.remoteservices.ui.handlers.ConnectionHandler
   * #getJob()
   */
  protected Job getJob(final ExecutionEvent event) throws ExecutionException {
    final ID createConnectId = RemoteServiceHandlerUtil
        .getActiveConnectIDChecked(event);
    final IContainer container = RemoteServiceHandlerUtil
        .getActiveIRemoteServiceContainerChecked(event);
    // decouple the long running connect call from the ui thread
    return new Job(NLS.bind("Connecting {0}", createConnectId.getName())) {
      protected IStatus run(IProgressMonitor monitor) {
        if (container == null)
          return Status.OK_STATUS;
        container.disconnect();
        return Status.OK_STATUS;
      }
    };
  }
}
TOP

Related Classes of org.eclipse.ecf.internal.remoteservices.ui.handlers.DisonnectRemoteServicehandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.