com.vmware.vim25.SSPIChallenge Maven / Gradle / Ivy
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 SSPIChallenge complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SSPIChallenge">
* <complexContent>
* <extension base="{urn:vim25}VimFault">
* <sequence>
* <element name="base64Token" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SSPIChallenge", propOrder = {
"base64Token"
})
public class SSPIChallenge
extends VimFault
{
@XmlElement(required = true)
protected String base64Token;
/**
* Gets the value of the base64Token property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBase64Token() {
return base64Token;
}
/**
* Sets the value of the base64Token property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBase64Token(String value) {
this.base64Token = value;
}
}