Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: f3ca979cd68397e8f27141e7191cec96d8b3b56c (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*******************************************************************************
 * Copyright (c) 2003, 2004 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
 *******************************************************************************/
/*
 * Created on Sep 19, 2003
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package org.eclipse.jst.j2ee.internal.moduleextension;

import java.util.HashMap;

import org.eclipse.jst.j2ee.internal.project.J2EEProjectUtilities;


/**
 * @author cbridgha
 * 
 * To change the template for this generated type comment go to Window>Preferences>Java>Code
 * Generation>Code and Comments
 */
public class EarModuleManager {
	static HashMap moduleExtensions = new HashMap();


	/**
	 * @return
	 */
	public static HashMap getModuleExtensions() {
		return moduleExtensions;
	}

	public static EarModuleExtension getModuleExtension(String key) {
		//Make sure the registry is loaded
		EarModuleExtensionRegistry.getInstance();
		return (EarModuleExtension) moduleExtensions.get(key);
	}

	/**
	 * @return
	 */
	public static EjbModuleExtension getEJBModuleExtension() {
		return (EjbModuleExtension) getModuleExtension(J2EEProjectUtilities.EJB);
	}

	/**
	 * @return
	 */
	public static JcaModuleExtension getJCAModuleExtension() {
		return (JcaModuleExtension) getModuleExtension(J2EEProjectUtilities.JCA);
	}

	/**
	 * @return
	 */
	public static WebModuleExtension getWebModuleExtension() {
		return (WebModuleExtension) getModuleExtension(J2EEProjectUtilities.DYNAMIC_WEB);
	}

	public static boolean hasEJBModuleExtension() {
		return (EjbModuleExtension) getModuleExtension(J2EEProjectUtilities.EJB) != null;
	}

	public static boolean hasJCAModuleExtension() {
		return (JcaModuleExtension) getModuleExtension(J2EEProjectUtilities.JCA) != null;
	}

	public static boolean hasWebModuleExtension() {
		return getModuleExtension(J2EEProjectUtilities.DYNAMIC_WEB) != null;
	}

	public static void registerModuleExtension(EarModuleExtension ext) {
		if (ext instanceof WebModuleExtension)
			moduleExtensions.put(J2EEProjectUtilities.DYNAMIC_WEB, ext);
		else if (ext instanceof EjbModuleExtension)
			moduleExtensions.put(J2EEProjectUtilities.EJB, ext);
		else if (ext instanceof JcaModuleExtension)
			moduleExtensions.put(J2EEProjectUtilities.JCA, ext);
		else
			moduleExtensions.put(J2EEProjectUtilities.ENTERPRISE_APPLICATION, ext);
	}

	public static void removeModuleExtension(String key) {
		moduleExtensions.remove(key);
	}
}

Back to the top