checkmarx.wsdl.portal.CxWSLdapDomainMappingSettings 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.06.07 at 11:08:45 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 CxWSLdapDomainMappingSettings complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CxWSLdapDomainMappingSettings">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IsMappedToDomain" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="DomainNetbiosName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DomainFQname" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CxWSLdapDomainMappingSettings", propOrder = {
"isMappedToDomain",
"domainNetbiosName",
"domainFQname"
})
public class CxWSLdapDomainMappingSettings {
@XmlElement(name = "IsMappedToDomain")
protected boolean isMappedToDomain;
@XmlElement(name = "DomainNetbiosName")
protected String domainNetbiosName;
@XmlElement(name = "DomainFQname")
protected String domainFQname;
/**
* Gets the value of the isMappedToDomain property.
*
*/
public boolean isIsMappedToDomain() {
return isMappedToDomain;
}
/**
* Sets the value of the isMappedToDomain property.
*
*/
public void setIsMappedToDomain(boolean value) {
this.isMappedToDomain = value;
}
/**
* Gets the value of the domainNetbiosName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomainNetbiosName() {
return domainNetbiosName;
}
/**
* Sets the value of the domainNetbiosName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomainNetbiosName(String value) {
this.domainNetbiosName = value;
}
/**
* Gets the value of the domainFQname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomainFQname() {
return domainFQname;
}
/**
* Sets the value of the domainFQname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomainFQname(String value) {
this.domainFQname = value;
}
}