package org.eclipse.bpel.apache.ode.runtime; /******************************************************************************* * Copyright (c) 2008, 2012 IBM Corporation, University of Stuttgart (IAAS) 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, University of Stuttgart (IAAS) - initial API and implementation *******************************************************************************/ import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * Runtime contributor for Apache ODE. * * @author Tammo van Lessen (IAAS) * @author Simon Moser (IBM) */ public class OdePlugin extends AbstractUIPlugin { public static final String PLUGIN_ID = "org.eclipse.bpel.apache.ode.runtime"; private static OdePlugin plugin; public void start(BundleContext context) throws Exception { super.start(context); } public void stop(BundleContext context) throws Exception { super.stop(context); plugin = null; } public static OdePlugin getDefault() { return plugin; } }