checkmarx.wsdl.portal.CxWSDataRetentionStatusResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CxWSDataRetentionStatusResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSDataRetentionStatusResponse">
* <complexContent>
* <extension base="{http://Checkmarx.com}CxWSBasicRepsonse">
* <sequence>
* <element name="Status" type="{http://Checkmarx.com}CxDataRetentionStatus"/>
* <element name="CurrentProgress" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="TotalProgress" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="StageError" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSDataRetentionStatusResponse", propOrder = {
"status",
"currentProgress",
"totalProgress",
"stageError"
})
public class CxWSDataRetentionStatusResponse
extends CxWSBasicRepsonse
{
@XmlElement(name = "Status", required = true)
protected CxDataRetentionStatus status;
@XmlElement(name = "CurrentProgress", required = true, type = Integer.class, nillable = true)
protected Integer currentProgress;
@XmlElement(name = "TotalProgress", required = true, type = Integer.class, nillable = true)
protected Integer totalProgress;
@XmlElement(name = "StageError")
protected String stageError;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link CxDataRetentionStatus }
*
*/
public CxDataRetentionStatus getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link CxDataRetentionStatus }
*
*/
public void setStatus(CxDataRetentionStatus value) {
this.status = value;
}
/**
* Gets the value of the currentProgress property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCurrentProgress() {
return currentProgress;
}
/**
* Sets the value of the currentProgress property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCurrentProgress(Integer value) {
this.currentProgress = value;
}
/**
* Gets the value of the totalProgress property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTotalProgress() {
return totalProgress;
}
/**
* Sets the value of the totalProgress property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTotalProgress(Integer value) {
this.totalProgress = value;
}
/**
* Gets the value of the stageError property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStageError() {
return stageError;
}
/**
* Sets the value of the stageError property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStageError(String value) {
this.stageError = value;
}
}