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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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 GuestAuthenticationChallenge complex type. * *

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

 * <complexType name="GuestAuthenticationChallenge">
 *   <complexContent>
 *     <extension base="{urn:vim25}GuestOperationsFault">
 *       <sequence>
 *         <element name="serverChallenge" type="{urn:vim25}GuestAuthentication"/>
 *         <element name="sessionID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GuestAuthenticationChallenge", propOrder = { "serverChallenge", "sessionID" }) public class GuestAuthenticationChallenge extends GuestOperationsFault { @XmlElement(required = true) protected GuestAuthentication serverChallenge; protected long sessionID; /** * Gets the value of the serverChallenge property. * * @return * possible object is * {@link GuestAuthentication } * */ public GuestAuthentication getServerChallenge() { return serverChallenge; } /** * Sets the value of the serverChallenge property. * * @param value * allowed object is * {@link GuestAuthentication } * */ public void setServerChallenge(GuestAuthentication value) { this.serverChallenge = value; } /** * Gets the value of the sessionID property. * */ public long getSessionID() { return sessionID; } /** * Sets the value of the sessionID property. * */ public void setSessionID(long value) { this.sessionID = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy