blob: 61962bbfe9957cb7e16017aa92b0a6cd71a2fcb1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* 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:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.services.ui;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.ptp.services.core.IServiceProvider;
import org.eclipse.ptp.services.ui.wizards.ServiceProviderConfigurationWizard;
import org.eclipse.swt.widgets.Shell;
/**
* Interface that supplies a UI which can be launched to configure a service provider.
*
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will work or
* that it will remain the same. Please do not use this API without consulting
* with the RDT team.
*
* @see IServiceProvider
*/
public interface IServiceProviderContributor {
/**
* Configure the service provider, which typically launches a dialog/wizard to allow the
* service provider to be configured (may include setting up and associating any required connections)
*
* @param provider
* @param parentShell parent SWT shell of the UI that is to be launched
* @deprecated
*/
public void configureServiceProvider(IServiceProvider provider, Shell parentShell);
/**
* Retrieve the wizard pages for a service provider
*
* @param wizard the configuration wizard
* @param provider the provider being configured
* @return wizard pages for the provider
*/
public WizardPage[] getWizardPages(ServiceProviderConfigurationWizard wizard, IServiceProvider provider);
}