Skip to main content
summaryrefslogtreecommitdiffstats
blob: 05943c2183d14ced5966cf3ae14d480e266ce14d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*******************************************************************************
 * Copyright (c) 2003, 2006 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.jst.j2ee.navigator.internal;

import org.eclipse.jst.j2ee.internal.wizard.AppClientComponentExportWizard;
import org.eclipse.jst.j2ee.internal.wizard.AppClientComponentImportWizard;
import org.eclipse.jst.j2ee.internal.wizard.EARComponentExportWizard;
import org.eclipse.jst.j2ee.internal.wizard.EARComponentImportWizard;
import org.eclipse.jst.j2ee.internal.wizard.J2EEUtilityJarImportWizardNew;
import org.eclipse.jst.j2ee.jca.ui.internal.wizard.ConnectorComponentExportWizard;
import org.eclipse.jst.j2ee.jca.ui.internal.wizard.ConnectorComponentImportWizard;

/**
 * <p>
 * The following class is experimental until fully documented.
 * </p>
 * <p>
 * The Creation IDs are used for activity filtering and as such are declared on the individual
 * wizards. All other IDs must be maintained to stay in sync with the values found in the plugin.xml
 * files of the respective module UI plugins.
 */
public interface IJ2EEWizardConstants {

//	String NEW_EAR_PROJECT_WIZARD_ID = EARComponentCreationWizard.WIZARD_ID;

//	String NEW_APPCLIENT_PROJECT_WIZARD_ID = AppClientComponentCreationWizard.WIZARD_ID;
//
//	String NEW_JCA_PROJECT_WIZARD_ID = ConnectorComponentCreationWizard.WIZARD_ID;
//
//	String NEW_EJB_PROJECT_WIZARD_ID = EJBComponentCreationWizard.WIZARD_ID;
//
//	String NEW_WEB_PROJECT_WIZARD_ID = WebComponentCreationWizard.WIZARD_ID;

	String NEW_ENTERPRISE_BEAN_WIZARD_ID = "org.eclipse.jst.j2ee.ejb.ui.util.createEJBWizard"; //$NON-NLS-1$

	String IMPORT_EAR_WIZARD_ID = EARComponentImportWizard.class.getName();

	String IMPORT_APPCLIENT_WIZARD_ID = AppClientComponentImportWizard.class.getName();

	String IMPORT_CONNECTOR_WIZARD_ID = ConnectorComponentImportWizard.class.getName();

	String IMPORT_ENTERPRISE_BEAN_WIZARD_ID = "org.eclipse.jst.ejb.ui.internal.wizard.EJBComponentImportWizard"; //$NON-NLS-1$

	String IMPORT_WEB_MODULE_WIZARD_ID = "org.eclipse.jst.servlet.ui.internal.wizard.WebComponentImportWizard"; //$NON-NLS-1$
	
	String EXPORT_WEB_MODULE_WIZARD_ID = "org.eclipse.jst.servlet.ui.internal.wizard.WebComponentExportWizard"; //$NON-NLS-1$

	String IMPORT_UTILITY_JAR_WIZARD_ID = J2EEUtilityJarImportWizardNew.class.getName();

	String EXPORT_EAR_WIZARD_ID = EARComponentExportWizard.class.getName();

	String EXPORT_APPCLIENT_WIZARD_ID = AppClientComponentExportWizard.class.getName();

	String EXPORT_CONNECTOR_WIZARD_ID = ConnectorComponentExportWizard.class.getName();

	String EXPORT_ENTERPRISE_BEAN_WIZARD_ID = "org.eclipse.jst.ejb.ui.internal.wizardEJBComponentExportWizard"; //$NON-NLS-1$

	
}

Back to the top