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

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


/**
 * 

Java class for VAppOvfSectionInfo complex type. * *

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

 * <complexType name="VAppOvfSectionInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="namespace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="atEnvelopeLevel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="contents" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VAppOvfSectionInfo", propOrder = { "key", "namespace", "type", "atEnvelopeLevel", "contents" }) public class VAppOvfSectionInfo extends DynamicData { protected Integer key; protected String namespace; protected String type; protected Boolean atEnvelopeLevel; protected String contents; /** * Gets the value of the key property. * * @return * possible object is * {@link Integer } * */ public Integer getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link Integer } * */ public void setKey(Integer value) { this.key = value; } /** * Gets the value of the namespace property. * * @return * possible object is * {@link String } * */ public String getNamespace() { return namespace; } /** * Sets the value of the namespace property. * * @param value * allowed object is * {@link String } * */ public void setNamespace(String value) { this.namespace = 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 atEnvelopeLevel property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAtEnvelopeLevel() { return atEnvelopeLevel; } /** * Sets the value of the atEnvelopeLevel property. * * @param value * allowed object is * {@link Boolean } * */ public void setAtEnvelopeLevel(Boolean value) { this.atEnvelopeLevel = value; } /** * Gets the value of the contents property. * * @return * possible object is * {@link String } * */ public String getContents() { return contents; } /** * Sets the value of the contents property. * * @param value * allowed object is * {@link String } * */ public void setContents(String value) { this.contents = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy