blob: e7f06aa8110477c858dabe362dbd205308872c48 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation.
* 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.rm.pbs.ui.wizards;
import org.eclipse.ptp.rm.pbs.core.rmsystem.PBSServiceProviderFactory;
import org.eclipse.ptp.rmsystem.IResourceManagerFactory;
import org.eclipse.ptp.ui.wizards.IRMConfigurationWizard;
import org.eclipse.ptp.ui.wizards.RMConfigurationWizardPage;
import org.eclipse.ptp.ui.wizards.RMConfigurationWizardPageFactory;
/**
* This class is only used to bridge between the old RM factory wizard and the new RMs backed
* by service configurations. It will be removed prior to the 3.0 release.
*
* @author greg
*
*/
public class PBSServiceProviderConfigurationWizardPageFactory extends RMConfigurationWizardPageFactory {
public PBSServiceProviderConfigurationWizardPageFactory() {
// no-op
}
@Override
public RMConfigurationWizardPage[] getPages(IRMConfigurationWizard wizard) {
return new RMConfigurationWizardPage[]{new PBSResourceManagerConfigurationWizardPage(wizard)};
}
@Override
public Class<? extends IResourceManagerFactory> getRMFactoryClass() {
return PBSServiceProviderFactory.class;
}
}