com.vmware.vim25.HostActiveDirectoryInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostActiveDirectoryInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostActiveDirectoryInfo">
* <complexContent>
* <extension base="{urn:vim25}HostDirectoryStoreInfo">
* <sequence>
* <element name="joinedDomain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="trustedDomain" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="domainMembershipStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="smartCardAuthenticationEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostActiveDirectoryInfo", propOrder = {
"joinedDomain",
"trustedDomain",
"domainMembershipStatus",
"smartCardAuthenticationEnabled"
})
public class HostActiveDirectoryInfo
extends HostDirectoryStoreInfo
{
protected String joinedDomain;
protected List trustedDomain;
protected String domainMembershipStatus;
protected Boolean smartCardAuthenticationEnabled;
/**
* Gets the value of the joinedDomain property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getJoinedDomain() {
return joinedDomain;
}
/**
* Sets the value of the joinedDomain property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setJoinedDomain(String value) {
this.joinedDomain = value;
}
/**
* Gets the value of the trustedDomain property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the trustedDomain property.
*
*
* For example, to add a new item, do as follows:
*
* getTrustedDomain().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getTrustedDomain() {
if (trustedDomain == null) {
trustedDomain = new ArrayList();
}
return this.trustedDomain;
}
/**
* Gets the value of the domainMembershipStatus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomainMembershipStatus() {
return domainMembershipStatus;
}
/**
* Sets the value of the domainMembershipStatus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomainMembershipStatus(String value) {
this.domainMembershipStatus = value;
}
/**
* Gets the value of the smartCardAuthenticationEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isSmartCardAuthenticationEnabled() {
return smartCardAuthenticationEnabled;
}
/**
* Sets the value of the smartCardAuthenticationEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setSmartCardAuthenticationEnabled(Boolean value) {
this.smartCardAuthenticationEnabled = value;
}
}