Package org.sonatype.nexus.rest.model

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


    }
  }

  @Override
  protected RepositoryTargetResource doUpdate() {
    final RepositoryTargetResourceResponse request = new RepositoryTargetResourceResponse();
    request.setData(settings());
    try {
      return getNexusClient()
          .serviceResource(path(id()))
          .put(RepositoryTargetResourceResponse.class, request)
          .getData();
View Full Code Here

TOP

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

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.