blob: c5dd81030209d0801d26addbe451fc8868f2a9df [file] [log] [blame]
/***************************************************************************************************
* 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
**************************************************************************************************/
package org.eclipse.jst.j2ee.ejb.internal.extensions;
public class EJBExtManager {
public static EJBExtension extension;
public static EJBExtension getEJBWsExt() {
return extension;
}
public static void registerEJBWsExtension(EJBExtension ext) {
extension = ext;
}
public static void removeEJBWsExtension() {
extension = null;
}
public EJBExtManager() {
super();
}
}