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

com.vmware.vim25.HostServiceTicket 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 HostServiceTicket complex type. * *

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

 * <complexType name="HostServiceTicket">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <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"/>
 *         <element name="service" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="serviceVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostServiceTicket", propOrder = { "host", "port", "sslThumbprint", "service", "serviceVersion", "sessionId" }) public class HostServiceTicket extends DynamicData { protected String host; protected Integer port; protected String sslThumbprint; @XmlElement(required = true) protected String service; @XmlElement(required = true) protected String serviceVersion; @XmlElement(required = true) protected String sessionId; /** * 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; } /** * Gets the value of the service property. * * @return * possible object is * {@link String } * */ public String getService() { return service; } /** * Sets the value of the service property. * * @param value * allowed object is * {@link String } * */ public void setService(String value) { this.service = value; } /** * Gets the value of the serviceVersion property. * * @return * possible object is * {@link String } * */ public String getServiceVersion() { return serviceVersion; } /** * Sets the value of the serviceVersion property. * * @param value * allowed object is * {@link String } * */ public void setServiceVersion(String value) { this.serviceVersion = value; } /** * Gets the value of the sessionId property. * * @return * possible object is * {@link String } * */ public String getSessionId() { return sessionId; } /** * Sets the value of the sessionId property. * * @param value * allowed object is * {@link String } * */ public void setSessionId(String value) { this.sessionId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy