checkmarx.wsdl.portal.CxWSResponseDeleteProjects 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 CxWSResponseDeleteProjects complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSResponseDeleteProjects">
* <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="UndeletedProjects" type="{http://Checkmarx.com}ArrayOfUndeletedObject" minOccurs="0"/>
* <element name="NumOfDeletedProjects" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSResponseDeleteProjects", propOrder = {
"isConfirmation",
"flags",
"undeletedProjects",
"numOfDeletedProjects"
})
public class CxWSResponseDeleteProjects
extends CxWSBasicRepsonse
{
@XmlElement(name = "IsConfirmation")
protected boolean isConfirmation;
@XmlList
@XmlElement(name = "Flags", required = true)
protected List flags;
@XmlElement(name = "UndeletedProjects")
protected ArrayOfUndeletedObject undeletedProjects;
@XmlElement(name = "NumOfDeletedProjects")
protected int numOfDeletedProjects;
/**
* 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 undeletedProjects property.
*
* @return
* possible object is
* {@link ArrayOfUndeletedObject }
*
*/
public ArrayOfUndeletedObject getUndeletedProjects() {
return undeletedProjects;
}
/**
* Sets the value of the undeletedProjects property.
*
* @param value
* allowed object is
* {@link ArrayOfUndeletedObject }
*
*/
public void setUndeletedProjects(ArrayOfUndeletedObject value) {
this.undeletedProjects = value;
}
/**
* Gets the value of the numOfDeletedProjects property.
*
*/
public int getNumOfDeletedProjects() {
return numOfDeletedProjects;
}
/**
* Sets the value of the numOfDeletedProjects property.
*
*/
public void setNumOfDeletedProjects(int value) {
this.numOfDeletedProjects = value;
}
}