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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
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 ExtensionServerInfo complex type. * *

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

 * <complexType name="ExtensionServerInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="description" type="{urn:vim25}Description"/>
 *         <element name="company" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="adminEmail" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
 *         <element name="serverThumbprint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExtensionServerInfo", propOrder = { "url", "description", "company", "type", "adminEmail", "serverThumbprint" }) public class ExtensionServerInfo extends DynamicData { @XmlElement(required = true) protected String url; @XmlElement(required = true) protected Description description; @XmlElement(required = true) protected String company; @XmlElement(required = true) protected String type; @XmlElement(required = true) protected List adminEmail; protected String serverThumbprint; /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link Description } * */ public Description getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link Description } * */ public void setDescription(Description value) { this.description = value; } /** * Gets the value of the company property. * * @return * possible object is * {@link String } * */ public String getCompany() { return company; } /** * Sets the value of the company property. * * @param value * allowed object is * {@link String } * */ public void setCompany(String value) { this.company = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the adminEmail property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the adminEmail property. * *

* For example, to add a new item, do as follows: *

     *    getAdminEmail().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAdminEmail() { if (adminEmail == null) { adminEmail = new ArrayList(); } return this.adminEmail; } /** * Gets the value of the serverThumbprint property. * * @return * possible object is * {@link String } * */ public String getServerThumbprint() { return serverThumbprint; } /** * Sets the value of the serverThumbprint property. * * @param value * allowed object is * {@link String } * */ public void setServerThumbprint(String value) { this.serverThumbprint = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy