All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.AuthenticationProfile Maven / Gradle / Ivy

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for AuthenticationProfile complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AuthenticationProfile">
 *   <complexContent>
 *     <extension base="{urn:vim25}ApplyProfile">
 *       <sequence>
 *         <element name="activeDirectory" type="{urn:vim25}ActiveDirectoryProfile" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuthenticationProfile", propOrder = { "activeDirectory" }) public class AuthenticationProfile extends ApplyProfile { protected ActiveDirectoryProfile activeDirectory; /** * Gets the value of the activeDirectory property. * * @return * possible object is * {@link ActiveDirectoryProfile } * */ public ActiveDirectoryProfile getActiveDirectory() { return activeDirectory; } /** * Sets the value of the activeDirectory property. * * @param value * allowed object is * {@link ActiveDirectoryProfile } * */ public void setActiveDirectory(ActiveDirectoryProfile value) { this.activeDirectory = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy