Examples of JdbcServiceImpl


Examples of org.apache.karaf.jdbc.internal.JdbcServiceImpl

@Services(provides = @ProvideService(JdbcService.class))
public class Activator extends BaseActivator {
    @Override
    protected void doStart() throws Exception {
        JdbcServiceImpl service = new JdbcServiceImpl();
        service.setBundleContext(bundleContext);
        register(JdbcService.class, service);

        JdbcMBeanImpl mbean = new JdbcMBeanImpl();
        mbean.setJdbcService(service);
        registerMBean(mbean, "type=jdbc");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.