Class PerformanceTestActivity
- java.lang.Object
-
- io.jenkins.plugins.devopsportal.models.AbstractActivity
-
- io.jenkins.plugins.devopsportal.models.PerformanceTestActivity
-
- All Implemented Interfaces:
Serializable
public class PerformanceTestActivity extends AbstractActivity
A persistent record of a PERFORMANCE_TEST activity.- Author:
- RĂ©mi BELLO <remi@evolya.fr>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PerformanceTestActivity(String applicationComponent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getErrorCount()
long
getSampleCount()
long
getTestCount()
boolean
isQualityGatePassed()
void
setErrorCount(long errorCount)
void
setSampleCount(long sampleCount)
void
setTestCount(long testCount)
-
Methods inherited from class io.jenkins.plugins.devopsportal.models.AbstractActivity
getApplicationComponent, getCategory, getScore, getTimestamp, getUUID, setScore
-
-
-
-
Constructor Detail
-
PerformanceTestActivity
@DataBoundConstructor public PerformanceTestActivity(String applicationComponent)
-
-
Method Detail
-
getTestCount
public long getTestCount()
-
setTestCount
@DataBoundSetter public void setTestCount(long testCount)
-
getSampleCount
public long getSampleCount()
-
setSampleCount
@DataBoundSetter public void setSampleCount(long sampleCount)
-
getErrorCount
public long getErrorCount()
-
setErrorCount
@DataBoundSetter public void setErrorCount(long errorCount)
-
isQualityGatePassed
public boolean isQualityGatePassed()
-
-