com.offbytwo.jenkins.model.BuildWithDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-client Show documentation
Show all versions of jenkins-client Show documentation
A Jenkins API client for Java
/*
* Copyright (c) 2013 Rising Oak LLC.
*
* Distributed under the MIT license: http://opensource.org/licenses/MIT
*/
package com.offbytwo.jenkins.model;
import com.google.common.base.Predicate;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.*;
import static com.google.common.collect.Collections2.filter;
public class BuildWithDetails extends Build {
List actions;
boolean building;
String description;
int duration;
int estimatedDuration;
String fullDisplayName;
String id;
long timestamp;
BuildResult result;
List artifacts;
String consoleOutputText;
String consoleOutputHtml;
BuildChangeSet changeSet;
List culprits;
public List getArtifacts() {
return artifacts;
}
public boolean isBuilding() { return building; }
public List getCauses() {
// actions is a List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy