checkmarx.wsdl.portal.CxWSResponseDeleteScans Maven / Gradle / Ivy
Show all versions of cx-spring-boot-sdk Show documentation
//
// 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.*;
import java.util.ArrayList;
import java.util.List;
/**
* Java class for CxWSResponseDeleteScans complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSResponseDeleteScans">
* <complexContent>
* <extension base="{http://Checkmarx.com}CxWSBasicRepsonse">
* <sequence>
* <element name="IsConfirmation" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="Flags" type="{http://Checkmarx.com}DeleteFlags"/>
* <element name="UndeletedScans" type="{http://Checkmarx.com}ArrayOfUndeletedObject" minOccurs="0"/>
* <element name="NumOfDeletedScans" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSResponseDeleteScans", propOrder = {
"isConfirmation",
"flags",
"undeletedScans",
"numOfDeletedScans"
})
public class CxWSResponseDeleteScans
extends CxWSBasicRepsonse
{
@XmlElement(name = "IsConfirmation")
protected boolean isConfirmation;
@XmlList
@XmlElement(name = "Flags", required = true)
protected List flags;
@XmlElement(name = "UndeletedScans")
protected ArrayOfUndeletedObject undeletedScans;
@XmlElement(name = "NumOfDeletedScans")
protected int numOfDeletedScans;
/**
* Gets the value of the isConfirmation property.
*
*/
public boolean isIsConfirmation() {
return isConfirmation;
}
/**
* Sets the value of the isConfirmation property.
*
*/
public void setIsConfirmation(boolean value) {
this.isConfirmation = value;
}
/**
* Gets the value of the flags property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the flags property.
*
*
* For example, to add a new item, do as follows:
*
* getFlags().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getFlags() {
if (flags == null) {
flags = new ArrayList();
}
return this.flags;
}
/**
* Gets the value of the undeletedScans property.
*
* @return
* possible object is
* {@link ArrayOfUndeletedObject }
*
*/
public ArrayOfUndeletedObject getUndeletedScans() {
return undeletedScans;
}
/**
* Sets the value of the undeletedScans property.
*
* @param value
* allowed object is
* {@link ArrayOfUndeletedObject }
*
*/
public void setUndeletedScans(ArrayOfUndeletedObject value) {
this.undeletedScans = value;
}
/**
* Gets the value of the numOfDeletedScans property.
*
*/
public int getNumOfDeletedScans() {
return numOfDeletedScans;
}
/**
* Sets the value of the numOfDeletedScans property.
*
*/
public void setNumOfDeletedScans(int value) {
this.numOfDeletedScans = value;
}
}