Package org.sonatype.nexus.configuration.model

Examples of org.sonatype.nexus.configuration.model.CRepositoryGrouping


  @Override
  public Map<String, RepositoryPathMapping> getMappings() {
    final HashMap<String, RepositoryPathMapping> result = new HashMap<String, RepositoryPathMapping>();

    final CRepositoryGrouping config = getCurrentConfiguration(false);

    if (config != null) {
      List<CPathMappingItem> items = config.getPathMappings();

      for (CPathMappingItem item : items) {
        RepositoryPathMapping mapping = convert(item);

        result.put(mapping.getId(), mapping);
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.configuration.model.CRepositoryGrouping

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.