checkmarx.wsdl.portal.CxEngineServer 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.XmlType;
/**
* Java class for CxEngineServer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxEngineServer">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="uri" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="maxScans" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="serverName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="maxScanLoc" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="minScanLoc" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxEngineServer", propOrder = {
"id",
"uri",
"maxScans",
"serverName",
"maxScanLoc",
"minScanLoc"
})
public class CxEngineServer {
protected long id;
protected String uri;
protected int maxScans;
protected String serverName;
protected int maxScanLoc;
protected int minScanLoc;
/**
* 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 uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
/**
* Gets the value of the maxScans property.
*
*/
public int getMaxScans() {
return maxScans;
}
/**
* Sets the value of the maxScans property.
*
*/
public void setMaxScans(int value) {
this.maxScans = value;
}
/**
* Gets the value of the serverName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServerName() {
return serverName;
}
/**
* Sets the value of the serverName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServerName(String value) {
this.serverName = value;
}
/**
* Gets the value of the maxScanLoc property.
*
*/
public int getMaxScanLoc() {
return maxScanLoc;
}
/**
* Sets the value of the maxScanLoc property.
*
*/
public void setMaxScanLoc(int value) {
this.maxScanLoc = value;
}
/**
* Gets the value of the minScanLoc property.
*
*/
public int getMinScanLoc() {
return minScanLoc;
}
/**
* Sets the value of the minScanLoc property.
*
*/
public void setMinScanLoc(int value) {
this.minScanLoc = value;
}
}