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

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

The 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 CustomizationSpec complex type. * *

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

 * <complexType name="CustomizationSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="options" type="{urn:vim25}CustomizationOptions" minOccurs="0"/>
 *         <element name="identity" type="{urn:vim25}CustomizationIdentitySettings"/>
 *         <element name="globalIPSettings" type="{urn:vim25}CustomizationGlobalIPSettings"/>
 *         <element name="nicSettingMap" type="{urn:vim25}CustomizationAdapterMapping" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="encryptionKey" type="{http://www.w3.org/2001/XMLSchema}byte" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomizationSpec", propOrder = { "options", "identity", "globalIPSettings", "nicSettingMap", "encryptionKey" }) public class CustomizationSpec extends DynamicData { protected CustomizationOptions options; @XmlElement(required = true) protected CustomizationIdentitySettings identity; @XmlElement(required = true) protected CustomizationGlobalIPSettings globalIPSettings; protected List nicSettingMap; @XmlElement(type = Byte.class) protected List encryptionKey; /** * Gets the value of the options property. * * @return * possible object is * {@link CustomizationOptions } * */ public CustomizationOptions getOptions() { return options; } /** * Sets the value of the options property. * * @param value * allowed object is * {@link CustomizationOptions } * */ public void setOptions(CustomizationOptions value) { this.options = value; } /** * Gets the value of the identity property. * * @return * possible object is * {@link CustomizationIdentitySettings } * */ public CustomizationIdentitySettings getIdentity() { return identity; } /** * Sets the value of the identity property. * * @param value * allowed object is * {@link CustomizationIdentitySettings } * */ public void setIdentity(CustomizationIdentitySettings value) { this.identity = value; } /** * Gets the value of the globalIPSettings property. * * @return * possible object is * {@link CustomizationGlobalIPSettings } * */ public CustomizationGlobalIPSettings getGlobalIPSettings() { return globalIPSettings; } /** * Sets the value of the globalIPSettings property. * * @param value * allowed object is * {@link CustomizationGlobalIPSettings } * */ public void setGlobalIPSettings(CustomizationGlobalIPSettings value) { this.globalIPSettings = value; } /** * Gets the value of the nicSettingMap 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 nicSettingMap property. * *

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

     *    getNicSettingMap().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CustomizationAdapterMapping } * * */ public List getNicSettingMap() { if (nicSettingMap == null) { nicSettingMap = new ArrayList(); } return this.nicSettingMap; } /** * Gets the value of the encryptionKey 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 encryptionKey property. * *

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

     *    getEncryptionKey().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Byte } * * */ public List getEncryptionKey() { if (encryptionKey == null) { encryptionKey = new ArrayList(); } return this.encryptionKey; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy