com.vmware.vim25.VirtualMachineMksTicket 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 VirtualMachineMksTicket complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineMksTicket">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ticket" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="cfgFile" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="host" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="port" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="sslThumbprint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineMksTicket", propOrder = {
"ticket",
"cfgFile",
"host",
"port",
"sslThumbprint"
})
public class VirtualMachineMksTicket
extends DynamicData
{
@XmlElement(required = true)
protected String ticket;
@XmlElement(required = true)
protected String cfgFile;
protected String host;
protected Integer port;
protected String sslThumbprint;
/**
* Gets the value of the ticket property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTicket() {
return ticket;
}
/**
* Sets the value of the ticket property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTicket(String value) {
this.ticket = value;
}
/**
* Gets the value of the cfgFile property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCfgFile() {
return cfgFile;
}
/**
* Sets the value of the cfgFile property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCfgFile(String value) {
this.cfgFile = value;
}
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHost(String value) {
this.host = value;
}
/**
* Gets the value of the port property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPort() {
return port;
}
/**
* Sets the value of the port property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPort(Integer value) {
this.port = value;
}
/**
* Gets the value of the sslThumbprint property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSslThumbprint() {
return sslThumbprint;
}
/**
* Sets the value of the sslThumbprint property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSslThumbprint(String value) {
this.sslThumbprint = value;
}
}