checkmarx.wsdl.portal.CxWSIssueTrackingSystem 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.*;
/**
* Java class for CxWSIssueTrackingSystem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSIssueTrackingSystem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="SystemType" type="{http://Checkmarx.com}CxWSIssueTrackingType"/>
* <element name="ID" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ServerURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSIssueTrackingSystem", propOrder = {
"systemType",
"id",
"name",
"serverURL",
"username",
"password"
})
@XmlSeeAlso({
CxWSJIRATrackingSystem.class
})
public abstract class CxWSIssueTrackingSystem {
@XmlElement(name = "SystemType", required = true)
protected CxWSIssueTrackingType systemType;
@XmlElement(name = "ID")
protected long id;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "ServerURL")
protected String serverURL;
@XmlElement(name = "Username")
protected String username;
@XmlElement(name = "Password")
protected String password;
/**
* Gets the value of the systemType property.
*
* @return
* possible object is
* {@link CxWSIssueTrackingType }
*
*/
public CxWSIssueTrackingType getSystemType() {
return systemType;
}
/**
* Sets the value of the systemType property.
*
* @param value
* allowed object is
* {@link CxWSIssueTrackingType }
*
*/
public void setSystemType(CxWSIssueTrackingType value) {
this.systemType = value;
}
/**
* 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 name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the serverURL property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServerURL() {
return serverURL;
}
/**
* Sets the value of the serverURL property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServerURL(String value) {
this.serverURL = value;
}
/**
* Gets the value of the username property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUsername() {
return username;
}
/**
* Sets the value of the username property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUsername(String value) {
this.username = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
}