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

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


/**
 * 

Java class for HostApplyProfile complex type. * *

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

 * <complexType name="HostApplyProfile">
 *   <complexContent>
 *     <extension base="{urn:vim25}ApplyProfile">
 *       <sequence>
 *         <element name="memory" type="{urn:vim25}HostMemoryProfile" minOccurs="0"/>
 *         <element name="storage" type="{urn:vim25}StorageProfile" minOccurs="0"/>
 *         <element name="network" type="{urn:vim25}NetworkProfile" minOccurs="0"/>
 *         <element name="datetime" type="{urn:vim25}DateTimeProfile" minOccurs="0"/>
 *         <element name="firewall" type="{urn:vim25}FirewallProfile" minOccurs="0"/>
 *         <element name="security" type="{urn:vim25}SecurityProfile" minOccurs="0"/>
 *         <element name="service" type="{urn:vim25}ServiceProfile" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="option" type="{urn:vim25}OptionProfile" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="userAccount" type="{urn:vim25}UserProfile" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="usergroupAccount" type="{urn:vim25}UserGroupProfile" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="authentication" type="{urn:vim25}AuthenticationProfile" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostApplyProfile", propOrder = { "memory", "storage", "network", "datetime", "firewall", "security", "service", "option", "userAccount", "usergroupAccount", "authentication" }) public class HostApplyProfile extends ApplyProfile { protected HostMemoryProfile memory; protected StorageProfile storage; protected NetworkProfile network; protected DateTimeProfile datetime; protected FirewallProfile firewall; protected SecurityProfile security; protected List service; protected List option; protected List userAccount; protected List usergroupAccount; protected AuthenticationProfile authentication; /** * Gets the value of the memory property. * * @return * possible object is * {@link HostMemoryProfile } * */ public HostMemoryProfile getMemory() { return memory; } /** * Sets the value of the memory property. * * @param value * allowed object is * {@link HostMemoryProfile } * */ public void setMemory(HostMemoryProfile value) { this.memory = value; } /** * Gets the value of the storage property. * * @return * possible object is * {@link StorageProfile } * */ public StorageProfile getStorage() { return storage; } /** * Sets the value of the storage property. * * @param value * allowed object is * {@link StorageProfile } * */ public void setStorage(StorageProfile value) { this.storage = value; } /** * Gets the value of the network property. * * @return * possible object is * {@link NetworkProfile } * */ public NetworkProfile getNetwork() { return network; } /** * Sets the value of the network property. * * @param value * allowed object is * {@link NetworkProfile } * */ public void setNetwork(NetworkProfile value) { this.network = value; } /** * Gets the value of the datetime property. * * @return * possible object is * {@link DateTimeProfile } * */ public DateTimeProfile getDatetime() { return datetime; } /** * Sets the value of the datetime property. * * @param value * allowed object is * {@link DateTimeProfile } * */ public void setDatetime(DateTimeProfile value) { this.datetime = value; } /** * Gets the value of the firewall property. * * @return * possible object is * {@link FirewallProfile } * */ public FirewallProfile getFirewall() { return firewall; } /** * Sets the value of the firewall property. * * @param value * allowed object is * {@link FirewallProfile } * */ public void setFirewall(FirewallProfile value) { this.firewall = value; } /** * Gets the value of the security property. * * @return * possible object is * {@link SecurityProfile } * */ public SecurityProfile getSecurity() { return security; } /** * Sets the value of the security property. * * @param value * allowed object is * {@link SecurityProfile } * */ public void setSecurity(SecurityProfile value) { this.security = value; } /** * Gets the value of the service 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 service property. * *

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

     *    getService().add(newItem);
     * 
* * *

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

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

     *    getOption().add(newItem);
     * 
* * *

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

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

     *    getUserAccount().add(newItem);
     * 
* * *

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

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

     *    getUsergroupAccount().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link UserGroupProfile } * * */ public List getUsergroupAccount() { if (usergroupAccount == null) { usergroupAccount = new ArrayList(); } return this.usergroupAccount; } /** * Gets the value of the authentication property. * * @return * possible object is * {@link AuthenticationProfile } * */ public AuthenticationProfile getAuthentication() { return authentication; } /** * Sets the value of the authentication property. * * @param value * allowed object is * {@link AuthenticationProfile } * */ public void setAuthentication(AuthenticationProfile value) { this.authentication = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy