Class BuildArtifactExt
- java.lang.Object
-
- com.cloudbees.workflow.rest.external.BuildArtifactExt
-
public class BuildArtifactExt extends Object
- Author:
- tom.fennelly@gmail.com
-
-
Constructor Summary
Constructors Constructor Description BuildArtifactExt()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BuildArtifactExt
create(Run.Artifact artifact, org.jenkinsci.plugins.workflow.job.WorkflowRun run)
String
getId()
String
getName()
String
getPath()
long
getSize()
String
getUrl()
void
setId(String id)
void
setName(String name)
void
setPath(String path)
void
setSize(long size)
void
setUrl(String url)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getSize
public long getSize()
-
setSize
public void setSize(long size)
-
create
public static BuildArtifactExt create(Run.Artifact artifact, org.jenkinsci.plugins.workflow.job.WorkflowRun run)
-
-