All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.offbytwo.jenkins.model.AllBuilds Maven / Gradle / Ivy

/*
 * Copyright (c) 2013 Rising Oak LLC.
 *
 * Distributed under the MIT license: http://opensource.org/licenses/MIT
 */

package com.offbytwo.jenkins.model;

import java.util.List;

/**
 * This class is only needed to get all builds in
 * {@link JobWithDetails#getAllBuilds()}.
 * 
 * @author Karl Heinz Marbaise
 *
 *         NOTE: This class is not part of any public API
 */
class AllBuilds extends BaseModel {
    private List allBuilds;

    public AllBuilds() {
    }

    public List getAllBuilds() {
        return this.allBuilds;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy