com.offbytwo.jenkins.model.Crumb 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;
/**
* @author Adrien Lecharpentier
*/
public class Crumb extends BaseModel {
private String crumbRequestField;
private String crumb;
public Crumb() {}
public Crumb(String crumbRequestField, String crumb) {
this.crumbRequestField = crumbRequestField;
this.crumb = crumb;
}
public String getCrumbRequestField() {
return crumbRequestField;
}
public String getCrumb() {
return crumb;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy