
org.mule.tooling.ui.contribution.JsonLoggerActivator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-logger-connector
Show all versions of json-logger-connector
JSON Logger is a custom-made Mule logger component which allows user to efficiently log traceable messages and Mule variables in JSON format.
The newest version!
package org.mule.tooling.ui.contribution;
import javax.annotation.Generated;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*
*/
@SuppressWarnings("all")
@Generated(value = "Mule DevKit Version 3.9.0", date = "2017-05-16T02:13:05+12:00", comments = "Build UNNAMED.2793.f49b6c7")
public class JsonLoggerActivator
extends AbstractUIPlugin
{
public final static String PLUGIN_ID = "org.mule.tooling.ui.contribution.json-logger";
private static org.mule.tooling.ui.contribution.JsonLoggerActivator plugin;
public void start(BundleContext context)
throws Exception
{
super.start(context);
plugin = this;
}
public void stop(BundleContext context)
throws Exception
{
plugin = null;
super.stop(context);
}
public static org.mule.tooling.ui.contribution.JsonLoggerActivator getDefault() {
return plugin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy