aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyBundleActivator.java
blob: 120f320b0d6b8cb8e7c8389e1fb8315295ce61d9 (plain) (blame)
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
27
28
29
30
31
32
33
34
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.bundle.g_act;

import com.yahoo.jdisc.service.CurrentContainer;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.framework.ServiceRegistration;

/**
 * @author Simon Thoresen Hult
 */
public class MyBundleActivator implements BundleActivator {

    private MyService service;
    private ServiceRegistration<?> registration;

    @Override
    public void start(BundleContext ctx) throws Exception {
        ServiceReference<?> containerRef = ctx.getServiceReference(CurrentContainer.class.getName());
        service = new MyService((CurrentContainer)ctx.getService(containerRef));
        registration = ctx.registerService(MyService.class.getName(), service, null);
    }

    @Override
    public void stop(BundleContext ctx) throws Exception {
        if (registration != null) {
            registration.unregister();
        }
        if (service != null) {
            service.release();
        }
    }
}