Package org.sonatype.nexus.yum.internal

Examples of org.sonatype.nexus.yum.internal.RepoMD


      catch (ItemNotFoundException ignore) {
        // skipping as it looks like member is not an Yum repository
      }
      if (repomdItem != null && repomdItem instanceof StorageFileItem) {
        try (InputStream in = ((StorageFileItem) repomdItem).getInputStream()) {
          final RepoMD repomd = new RepoMD(in);
          for (final String location : repomd.getLocations()) {
            String retrieveLocation = "/" + location;
            if (!retrieveLocation.matches("/" + PATH_OF_REPODATA + "/.*\\.sqlite\\.bz2")) {
              log.trace("Retrieving {}:{}", memberRepository.getId(), retrieveLocation);
              memberRepository.retrieveItem(new ResourceStoreRequest(retrieveLocation));
            }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.yum.internal.RepoMD

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.