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

com.vmware.vim25.OvfCreateDescriptorParams 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.XmlType;


/**
 * 

Java class for OvfCreateDescriptorParams complex type. * *

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

 * <complexType name="OvfCreateDescriptorParams">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="ovfFiles" type="{urn:vim25}OvfFile" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="includeImageFiles" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="exportOption" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="snapshot" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OvfCreateDescriptorParams", propOrder = { "ovfFiles", "name", "description", "includeImageFiles", "exportOption", "snapshot" }) public class OvfCreateDescriptorParams extends DynamicData { protected List ovfFiles; protected String name; protected String description; protected Boolean includeImageFiles; protected List exportOption; protected ManagedObjectReference snapshot; /** * Gets the value of the ovfFiles 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 ovfFiles property. * *

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

     *    getOvfFiles().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OvfFile } * * */ public List getOvfFiles() { if (ovfFiles == null) { ovfFiles = new ArrayList(); } return this.ovfFiles; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the includeImageFiles property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeImageFiles() { return includeImageFiles; } /** * Sets the value of the includeImageFiles property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeImageFiles(Boolean value) { this.includeImageFiles = value; } /** * Gets the value of the exportOption 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 exportOption property. * *

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

     *    getExportOption().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getExportOption() { if (exportOption == null) { exportOption = new ArrayList(); } return this.exportOption; } /** * Gets the value of the snapshot property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getSnapshot() { return snapshot; } /** * Sets the value of the snapshot property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setSnapshot(ManagedObjectReference value) { this.snapshot = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy