Package org.sonatype.nexus.rest.model

Examples of org.sonatype.nexus.rest.model.NexusNGArtifactLink


  protected NexusNGArtifactLink createNexusNGArtifactLink(final Request request, final String repositoryId,
                                                          final String groupId, final String artifactId,
                                                          final String version, final String extension,
                                                          final String classifier)
  {
    NexusNGArtifactLink link = new NexusNGArtifactLink();

    link.setExtension(extension);

    link.setClassifier(classifier);

    return link;
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.rest.model.NexusNGArtifactLink

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.