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

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

The newest version!
/*
 * Copyright (c) 2013 Cosmin Stejerean, Karl Heinz Marbaise, and contributors.
 *
 * Distributed under the MIT license: http://opensource.org/licenses/MIT
 */

package com.offbytwo.jenkins.model;

import java.util.List;

public class QueueItemActions extends BaseModel {
    private List causes;

    public List getCauses() {
        return causes;
    }

    public void setCauses(List causes) {
        this.causes = causes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy