blob: 951d972b3bfe0cd6702f8f9b6d2af2f76ae910ef [file] [log] [blame]
package org.apache.aries.tx.control.jdbc.xa.impl;
import static org.osgi.framework.Constants.SERVICE_PID;
import java.util.Dictionary;
import java.util.Hashtable;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.cm.ManagedServiceFactory;
import org.osgi.service.transaction.control.jdbc.JDBCConnectionProviderFactory;
public class Activator implements BundleActivator {
private ServiceRegistration<JDBCConnectionProviderFactory> reg;
private ServiceRegistration<ManagedServiceFactory> factoryReg;
@Override
public void start(BundleContext context) throws Exception {
reg = context.registerService(JDBCConnectionProviderFactory.class,
new JDBCConnectionProviderFactoryImpl(), getProperties());
factoryReg = context.registerService(ManagedServiceFactory.class,
new ManagedServiceFactoryImpl(context), getMSFProperties());
}
@Override
public void stop(BundleContext context) throws Exception {
reg.unregister();
factoryReg.unregister();
}
private Dictionary<String, Object> getProperties() {
Dictionary<String, Object> props = new Hashtable<>();
props.put("osgi.local.enabled", Boolean.TRUE);
props.put("osgi.xa.enabled", Boolean.TRUE);
return props;
}
private Dictionary<String, ?> getMSFProperties() {
Dictionary<String, Object> props = new Hashtable<>();
props.put(SERVICE_PID, "org.apache.aries.tx.control.jdbc.xa");
return props;
}
}