All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.swarm.arquillian.adapter.ServiceRegistryServiceActivator Maven / Gradle / Ivy

There is a newer version: 2.7.0.Final
Show newest version
package org.wildfly.swarm.arquillian.adapter;

import org.jboss.msc.service.ServiceActivator;
import org.jboss.msc.service.ServiceActivatorContext;
import org.jboss.msc.service.ServiceRegistry;
import org.jboss.msc.service.ServiceRegistryException;

/**
 * @author Bob McWhirter
 */
public class ServiceRegistryServiceActivator implements ServiceActivator {
    public static ServiceRegistry INSTANCE = null;
    @Override
    public void activate(ServiceActivatorContext context) throws ServiceRegistryException {
        INSTANCE = context.getServiceRegistry();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy