Example usage for com.amazonaws.services.codebuild.model BatchGetProjectsResult getProjects

List of usage examples for com.amazonaws.services.codebuild.model BatchGetProjectsResult getProjects

Introduction

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

Prototype


public java.util.List<Project> getProjects() 

Source Link

Document

Information about the requested build projects.

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  .  ja v  a2 s .  c  o 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();
    }
}