checkmarx.wsdl.portal.CxWSActiveDirectoryDomainDetails 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 CxWSActiveDirectoryDomainDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSActiveDirectoryDomainDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NetbiosName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="FullyQualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsMappedToLdap" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="HasDomainUsers" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSActiveDirectoryDomainDetails", propOrder = {
"netbiosName",
"fullyQualifiedName",
"isMappedToLdap",
"hasDomainUsers"
})
public class CxWSActiveDirectoryDomainDetails {
@XmlElement(name = "NetbiosName")
protected String netbiosName;
@XmlElement(name = "FullyQualifiedName")
protected String fullyQualifiedName;
@XmlElement(name = "IsMappedToLdap")
protected boolean isMappedToLdap;
@XmlElement(name = "HasDomainUsers")
protected boolean hasDomainUsers;
/**
* Gets the value of the netbiosName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetbiosName() {
return netbiosName;
}
/**
* Sets the value of the netbiosName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNetbiosName(String value) {
this.netbiosName = value;
}
/**
* Gets the value of the fullyQualifiedName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFullyQualifiedName() {
return fullyQualifiedName;
}
/**
* Sets the value of the fullyQualifiedName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFullyQualifiedName(String value) {
this.fullyQualifiedName = value;
}
/**
* Gets the value of the isMappedToLdap property.
*
*/
public boolean isIsMappedToLdap() {
return isMappedToLdap;
}
/**
* Sets the value of the isMappedToLdap property.
*
*/
public void setIsMappedToLdap(boolean value) {
this.isMappedToLdap = value;
}
/**
* Gets the value of the hasDomainUsers property.
*
*/
public boolean isHasDomainUsers() {
return hasDomainUsers;
}
/**
* Sets the value of the hasDomainUsers property.
*
*/
public void setHasDomainUsers(boolean value) {
this.hasDomainUsers = value;
}
}