blob: bccc1350bab8406d2c6a1ece067f58d41eb35ecb (
plain)
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.libjitsi;
import org.jitsi.service.libjitsi.*;
import org.osgi.framework.*;
public class LibJitsiActivator
implements BundleActivator
{
public void start(BundleContext bundleContext)
throws Exception
{
LibJitsi.start();
}
public void stop(BundleContext bundleContext)
throws Exception
{
LibJitsi.stop();
}
}
|