Package com.mathworks.ci
Class BuildArtifactAction
- java.lang.Object
-
- com.mathworks.ci.BuildArtifactAction
-
- All Implemented Interfaces:
Action
,ModelObject
public class BuildArtifactAction extends Object implements Action
-
-
Constructor Summary
Constructors Constructor Description BuildArtifactAction(Run<?,?> build, String actionID)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActionID()
List<BuildArtifactData>
getBuildArtifact()
String
getDisplayName()
int
getFailCount()
String
getIconFileName()
Run
getOwner()
int
getSkipCount()
int
getTotalCount()
String
getUrlName()
void
setFailCount(int failCount)
void
setOwner(Run owner)
void
setSkipCount(int skipCount)
void
setTotalcount(int totalCount)
-
-
-
Method Detail
-
getActionID
public String getActionID()
-
getIconFileName
@CheckForNull public String getIconFileName()
- Specified by:
getIconFileName
in interfaceAction
-
getDisplayName
@CheckForNull public String getDisplayName()
- Specified by:
getDisplayName
in interfaceAction
- Specified by:
getDisplayName
in interfaceModelObject
-
getUrlName
@CheckForNull public String getUrlName()
- Specified by:
getUrlName
in interfaceAction
-
getBuildArtifact
public List<BuildArtifactData> getBuildArtifact() throws org.json.simple.parser.ParseException, InterruptedException, IOException
- Throws:
org.json.simple.parser.ParseException
InterruptedException
IOException
-
setTotalcount
public void setTotalcount(int totalCount)
-
setSkipCount
public void setSkipCount(int skipCount)
-
getTotalCount
public int getTotalCount()
-
getFailCount
public int getFailCount()
-
setFailCount
public void setFailCount(int failCount)
-
getSkipCount
public int getSkipCount()
-
getOwner
public Run getOwner()
-
setOwner
public void setOwner(Run owner)
- Parameters:
owner
- the owner to set
-
-