com.offbytwo.jenkins.model.QueueReference 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
package com.offbytwo.jenkins.model;
public class QueueReference extends BaseModel {
private String queueItem;
public QueueReference(String location) {
queueItem = location;
}
public String getQueueItemUrlPart() {
return queueItem;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy