summaryrefslogtreecommitdiffstats
path: root/container-disc/src/main/java/com/yahoo/container/jdisc/osgi/ContainerBundleActivator.java
blob: 17e64426b88ab90b5a400318243585f1c8203b2d (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.jdisc.osgi;

import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.framework.hooks.resolver.ResolverHookFactory;

import java.util.Hashtable;

/**
 * @author tonytv
 */
public class ContainerBundleActivator implements BundleActivator {

    private ServiceRegistration<ResolverHookFactory> resolverHookFactoryServiceRegistration;

    @Override
    public void start(BundleContext bundleContext) throws Exception {
        resolverHookFactoryServiceRegistration = bundleContext.registerService(
                ResolverHookFactory.class,
                new JacksonJaxrsResolverHook.Factory(),
                new Hashtable<>());
    }

    @Override
    public void stop(BundleContext bundleContext) throws Exception {
        resolverHookFactoryServiceRegistration.unregister();
    }

}