Examples of StagingPromote


Examples of org.sonatype.nexus.rest.model.staging.StagingPromote

        ensureAuthenticated();

        URI uri = baseUri().path("staging/profiles").path(profileId).path("finish").build();

        StagingPromoteRequest request = new StagingPromoteRequest();
        StagingPromote data = new StagingPromote();
        data.setStagedRepositoryId(repositoryId);
        data.setDescription(description);
        request.setData(data);

        client.post(uri, marshal(StagingPromoteRequest.class, request));
    }
View Full Code Here

Examples of org.sonatype.nexus.rest.model.staging.StagingPromote

        ensureAuthenticated();

        URI uri = baseUri().path("staging/profiles").path(profileId).path("drop").build();

        StagingPromoteRequest request = new StagingPromoteRequest();
        StagingPromote data = new StagingPromote();
       
        data.setStagedRepositoryId(repositoryId);

        request.setData(data);

        client.post(uri, marshal(StagingPromoteRequest.class, request));
    }
View Full Code Here

Examples of org.sonatype.nexus.rest.model.staging.StagingPromote

        ensureAuthenticated();

        URI uri = baseUri().path("staging/profiles").path(profileId).path("promote").build();

        StagingPromoteRequest request = new StagingPromoteRequest();
        StagingPromote data = new StagingPromote();
        data.setStagedRepositoryId(stagedRepositoryId);
        data.setTargetRepositoryId(targetRepositoryId);
        request.setData(data);

        client.post(uri, marshal(StagingPromoteRequest.class, request));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.