Class DeploymentsStatusOverview
java.lang.Object
com.xebialabs.deployit.engine.api.dto.AbstractDto
com.xebialabs.deployit.engine.api.dto.report.DeploymentsStatusOverview
Contains information about overall number of deployments per deployment state.
- 
Constructor Summary
ConstructorsConstructorDescriptionDeploymentsStatusOverview(int noOfSuccessfulDeployments, int noOfFailedDeployments, int noOfAbortedDeployments, int noOfRollbacks, int total)  - 
Method Summary
Modifier and TypeMethodDescriptionintintintintintMethods inherited from class com.xebialabs.deployit.engine.api.dto.AbstractDto
toString 
- 
Constructor Details
- 
DeploymentsStatusOverview
public DeploymentsStatusOverview() - 
DeploymentsStatusOverview
public DeploymentsStatusOverview(int noOfSuccessfulDeployments, int noOfFailedDeployments, int noOfAbortedDeployments, int noOfRollbacks, int total)  
 - 
 - 
Method Details
- 
getNoOfSuccessfulDeployments
public int getNoOfSuccessfulDeployments()- Returns:
 - The number of successful deployments.
 
 - 
getNoOfFailedDeployments
public int getNoOfFailedDeployments()- Returns:
 - The number of failed deployments.
 
 - 
getNoOfAbortedDeployments
public int getNoOfAbortedDeployments()- Returns:
 - The number of aborted deployments.
 
 - 
getNoOfRollbacks
public int getNoOfRollbacks()- Returns:
 - The number of rollbacks.
 
 - 
getTotalDeployments
public int getTotalDeployments()- Returns:
 - The total number of deployments.
 
 
 -