checkmarx.wsdl.portal.CxWSResponseEngineServerId Maven / Gradle / Ivy
//
// 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.XmlType;
/**
* Java class for CxWSResponseEngineServerId complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSResponseEngineServerId">
* <complexContent>
* <extension base="{http://Checkmarx.com}CxWSBasicRepsonse">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="isContinuousRange" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="continuousRangeWarningMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSResponseEngineServerId", propOrder = {
"id",
"isContinuousRange",
"continuousRangeWarningMessage"
})
public class CxWSResponseEngineServerId
extends CxWSBasicRepsonse
{
protected long id;
protected boolean isContinuousRange;
protected String continuousRangeWarningMessage;
/**
* Gets the value of the id property.
*
*/
public long getId() {
return id;
}
/**
* Sets the value of the id property.
*
*/
public void setId(long value) {
this.id = value;
}
/**
* Gets the value of the isContinuousRange property.
*
*/
public boolean isIsContinuousRange() {
return isContinuousRange;
}
/**
* Sets the value of the isContinuousRange property.
*
*/
public void setIsContinuousRange(boolean value) {
this.isContinuousRange = value;
}
/**
* Gets the value of the continuousRangeWarningMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContinuousRangeWarningMessage() {
return continuousRangeWarningMessage;
}
/**
* Sets the value of the continuousRangeWarningMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContinuousRangeWarningMessage(String value) {
this.continuousRangeWarningMessage = value;
}
}