Package org.sonatype.nexus.proxy.walker

Examples of org.sonatype.nexus.proxy.walker.PredicatePathWalkerFilter


    return getRepository().recreateMavenMetadata(request);
  }

  @Override
  protected WalkerFilter getMetadataWalkerFilter() {
    return new PredicatePathWalkerFilter(PredicatePathWalkerFilter.ITEM_PATH_EXTRACTOR, new Predicate<String>()
    {
      @Override
      public boolean apply(final String input) {
        return M2ArtifactRecognizer.isMetadata(input);
      }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.walker.PredicatePathWalkerFilter

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.