blob: f1b14d48d53473bd7d2ad2595c1ab5501b244b65 [file] [log] [blame]
/*******************************************************************************
* 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())) { //$NON-NLS-1$
protected IStatus run(IProgressMonitor monitor) {
if (container == null)
return Status.OK_STATUS;
container.disconnect();
return Status.OK_STATUS;
}
};
}
}