com.offbytwo.jenkins.model.QueueItemActions 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 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 - 2025 Weber Informatics LLC | Privacy Policy