com.offbytwo.jenkins.model.Artifact 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 Rising Oak LLC.
*
* Distributed under the MIT license: http://opensource.org/licenses/MIT
*/
package com.offbytwo.jenkins.model;
public class Artifact extends BaseModel {
String displayPath;
String fileName;
String relativePath;
public String getDisplayPath() {
return displayPath;
}
public void setDisplayPath(String displayPath) {
this.displayPath = displayPath;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getRelativePath() {
return relativePath;
}
public void setRelativePath(String relativePath) {
this.relativePath = relativePath;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy