Example usage for com.amazonaws.services.codebuild.model BatchGetProjectsRequest BatchGetProjectsRequest

List of usage examples for com.amazonaws.services.codebuild.model BatchGetProjectsRequest BatchGetProjectsRequest

Introduction

In this page you can find the example usage for com.amazonaws.services.codebuild.model BatchGetProjectsRequest BatchGetProjectsRequest.

Prototype

BatchGetProjectsRequest

Source Link

Usage

From source file:CodeBuilder.java

License:Open Source License

private void retrieveArtifactAndSourceInfo(AWSCodeBuildClient cbClient) throws Exception {
    BatchGetProjectsResult bgpResult = cbClient
            .batchGetProjects(new BatchGetProjectsRequest().withNames(this.projectName));

    if (bgpResult.getProjects().isEmpty()) {
        throw new RuntimeException("Project " + this.projectName + " does not exist.");
    } else {/* w ww  . j av a 2 s  .co m*/
        this.artifactLocation = bgpResult.getProjects().get(0).getArtifacts().getLocation();
        this.artifactType = bgpResult.getProjects().get(0).getArtifacts().getType();

        this.projectSourceLocation = bgpResult.getProjects().get(0).getSource().getLocation();
        this.projectSourceType = bgpResult.getProjects().get(0).getSource().getType();
    }
}