Package org.sonatype.nexus.capability.CapabilityRegistryEvent

Examples of org.sonatype.nexus.capability.CapabilityRegistryEvent.Ready


      DefaultCapabilityRegistry registry = capabilityRegistryProvider.get();
      registry.load();

      // fire event when the registry is loaded and ready for use
      eventBus.post(new Ready(registry));
    }
    catch (final Exception e) {
      // fail hard with an error to stop further server activity
      throw new Error("Could not boot capabilities", e);
    }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.capability.CapabilityRegistryEvent.Ready

Copyright © 2018 www.massapicom. 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.