Package org.sonatype.nexus.component.source.config

Examples of org.sonatype.nexus.component.source.config.ComponentSourceConfigId


    return databaseInstance.get().acquire();
  }

  private ComponentSourceConfigId convertId(final ORID rid) {
    String encoded = recordIdObfuscator.encode(entityType, rid);
    return new ComponentSourceConfigId(encoded);
  }
View Full Code Here


    return inner.createId(name);
  }

  @Override
  public ComponentSourceConfigId add(final ComponentSourceConfig config) throws IOException {
    final ComponentSourceConfigId id = inner.add(config);
    final ComponentSource source = create(config);
    registry.register(source);
    return id;
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.component.source.config.ComponentSourceConfigId

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.