From 01f95a9b29dcebe3c4f1ff3f65fbc73ae33ba727 Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Sun, 25 Jun 2006 23:11:26 +0000 Subject: [PATCH] SipActivator --- .../impl/protocol/sip/Activator.java | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/net/java/sip/communicator/impl/protocol/sip/Activator.java diff --git a/src/net/java/sip/communicator/impl/protocol/sip/Activator.java b/src/net/java/sip/communicator/impl/protocol/sip/Activator.java deleted file mode 100644 index ea9fae90e..000000000 --- a/src/net/java/sip/communicator/impl/protocol/sip/Activator.java +++ /dev/null @@ -1,44 +0,0 @@ -package net.java.sip.communicator.impl.protocol.sip; - -import org.osgi.framework.*; -import net.java.sip.communicator.util.*; - -/** - * Activates the SIP package - * @author Emil Ivov - */ -public class Activator - implements BundleActivator -{ - private Logger logger = Logger.getLogger(Activator.class.getName()); - - /** - * Called when this bundle is started so the Framework can perform the - * bundle-specific activities necessary to start this bundle. - * - * @param context The execution context of the bundle being started. - * @throws Exception If this method throws an exception, this bundle is - * marked as stopped and the Framework will remove this bundle's - * listeners, unregister all services registered by this bundle, and - * release all services used by this bundle. - */ - public void start(BundleContext context) throws Exception - { - logger.debug("Started."); - } - - /** - * Called when this bundle is stopped so the Framework can perform the - * bundle-specific activities necessary to stop the bundle. - * - * @param context The execution context of the bundle being stopped. - * @throws Exception If this method throws an exception, the bundle is - * still marked as stopped, and the Framework will remove the bundle's - * listeners, unregister all services registered by the bundle, and - * release all services used by the bundle. - */ - public void stop(BundleContext context) throws Exception - { - logger.debug("Stopped."); - } -}