Examples of PrefixFilePublishedRepositoryEvent


Examples of org.sonatype.nexus.proxy.maven.routing.events.PrefixFilePublishedRepositoryEvent

            && mavenRepository.getLocalStatus().shouldServiceRequest()) {
          final FilePrefixSource prefixSource = getPrefixSourceFor(mavenRepository);
          if (prefixSource.exists()) {
            log.debug("Initializing prefix file of {}", mavenRepository);
            if (prefixSource.supported()) {
              eventBus.post(new PrefixFilePublishedRepositoryEvent(mavenRepository, prefixSource));
            }
            else {
              eventBus.post(new PrefixFileUnpublishedRepositoryEvent(mavenRepository));
            }
          }
View Full Code Here

Examples of org.sonatype.nexus.proxy.maven.routing.events.PrefixFilePublishedRepositoryEvent

      unpublish(mavenRepository);
      throw e;
    }

    // event
    eventBus.post(new PrefixFilePublishedRepositoryEvent(mavenRepository, prefixesFile));

    // propagate
    propagatePrefixFileUpdateOf(mavenRepository);
  }
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.