checkmarx.wsdl.portal.CxWSHeaderDisplayOptions 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 CxWSHeaderDisplayOptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSHeaderDisplayOptions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Link2OnlineResults" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="Team" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="CheckmarxVersion" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ScanComments" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ScanType" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="SourceOrigin" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ScanDensity" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSHeaderDisplayOptions", propOrder = {
"link2OnlineResults",
"team",
"checkmarxVersion",
"scanComments",
"scanType",
"sourceOrigin",
"scanDensity"
})
public class CxWSHeaderDisplayOptions {
@XmlElement(name = "Link2OnlineResults")
protected boolean link2OnlineResults;
@XmlElement(name = "Team")
protected boolean team;
@XmlElement(name = "CheckmarxVersion")
protected boolean checkmarxVersion;
@XmlElement(name = "ScanComments")
protected boolean scanComments;
@XmlElement(name = "ScanType")
protected boolean scanType;
@XmlElement(name = "SourceOrigin")
protected boolean sourceOrigin;
@XmlElement(name = "ScanDensity")
protected boolean scanDensity;
/**
* Gets the value of the link2OnlineResults property.
*
*/
public boolean isLink2OnlineResults() {
return link2OnlineResults;
}
/**
* Sets the value of the link2OnlineResults property.
*
*/
public void setLink2OnlineResults(boolean value) {
this.link2OnlineResults = value;
}
/**
* Gets the value of the team property.
*
*/
public boolean isTeam() {
return team;
}
/**
* Sets the value of the team property.
*
*/
public void setTeam(boolean value) {
this.team = value;
}
/**
* Gets the value of the checkmarxVersion property.
*
*/
public boolean isCheckmarxVersion() {
return checkmarxVersion;
}
/**
* Sets the value of the checkmarxVersion property.
*
*/
public void setCheckmarxVersion(boolean value) {
this.checkmarxVersion = value;
}
/**
* Gets the value of the scanComments property.
*
*/
public boolean isScanComments() {
return scanComments;
}
/**
* Sets the value of the scanComments property.
*
*/
public void setScanComments(boolean value) {
this.scanComments = value;
}
/**
* Gets the value of the scanType property.
*
*/
public boolean isScanType() {
return scanType;
}
/**
* Sets the value of the scanType property.
*
*/
public void setScanType(boolean value) {
this.scanType = value;
}
/**
* Gets the value of the sourceOrigin property.
*
*/
public boolean isSourceOrigin() {
return sourceOrigin;
}
/**
* Sets the value of the sourceOrigin property.
*
*/
public void setSourceOrigin(boolean value) {
this.sourceOrigin = value;
}
/**
* Gets the value of the scanDensity property.
*
*/
public boolean isScanDensity() {
return scanDensity;
}
/**
* Sets the value of the scanDensity property.
*
*/
public void setScanDensity(boolean value) {
this.scanDensity = value;
}
}