checkmarx.wsdl.portal.CxWSRequestDeleteScans 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 CxWSRequestDeleteScans complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSRequestDeleteScans">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SessionID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ScanIDs" type="{http://Checkmarx.com}ArrayOfLong" minOccurs="0"/>
* <element name="Flags" type="{http://Checkmarx.com}DeleteFlags"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSRequestDeleteScans", propOrder = {
"sessionID",
"scanIDs",
"flags"
})
public class CxWSRequestDeleteScans {
@XmlElement(name = "SessionID")
protected String sessionID;
@XmlElement(name = "ScanIDs")
protected ArrayOfLong scanIDs;
@XmlList
@XmlElement(name = "Flags", required = true)
protected List flags;
/**
* Gets the value of the sessionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionID() {
return sessionID;
}
/**
* Sets the value of the sessionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionID(String value) {
this.sessionID = value;
}
/**
* Gets the value of the scanIDs property.
*
* @return
* possible object is
* {@link ArrayOfLong }
*
*/
public ArrayOfLong getScanIDs() {
return scanIDs;
}
/**
* Sets the value of the scanIDs property.
*
* @param value
* allowed object is
* {@link ArrayOfLong }
*
*/
public void setScanIDs(ArrayOfLong value) {
this.scanIDs = 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;
}
}