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

com.vmware.vim25.HostProfileCompleteConfigSpec 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 HostProfileCompleteConfigSpec complex type. * *

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

 * <complexType name="HostProfileCompleteConfigSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}HostProfileConfigSpec">
 *       <sequence>
 *         <element name="applyProfile" type="{urn:vim25}HostApplyProfile" minOccurs="0"/>
 *         <element name="customComplyProfile" type="{urn:vim25}ComplianceProfile" minOccurs="0"/>
 *         <element name="disabledExpressionListChanged" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="disabledExpressionList" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostProfileCompleteConfigSpec", propOrder = { "applyProfile", "customComplyProfile", "disabledExpressionListChanged", "disabledExpressionList" }) public class HostProfileCompleteConfigSpec extends HostProfileConfigSpec { protected HostApplyProfile applyProfile; protected ComplianceProfile customComplyProfile; protected boolean disabledExpressionListChanged; protected List disabledExpressionList; /** * Gets the value of the applyProfile property. * * @return * possible object is * {@link HostApplyProfile } * */ public HostApplyProfile getApplyProfile() { return applyProfile; } /** * Sets the value of the applyProfile property. * * @param value * allowed object is * {@link HostApplyProfile } * */ public void setApplyProfile(HostApplyProfile value) { this.applyProfile = value; } /** * Gets the value of the customComplyProfile property. * * @return * possible object is * {@link ComplianceProfile } * */ public ComplianceProfile getCustomComplyProfile() { return customComplyProfile; } /** * Sets the value of the customComplyProfile property. * * @param value * allowed object is * {@link ComplianceProfile } * */ public void setCustomComplyProfile(ComplianceProfile value) { this.customComplyProfile = value; } /** * Gets the value of the disabledExpressionListChanged property. * */ public boolean isDisabledExpressionListChanged() { return disabledExpressionListChanged; } /** * Sets the value of the disabledExpressionListChanged property. * */ public void setDisabledExpressionListChanged(boolean value) { this.disabledExpressionListChanged = value; } /** * Gets the value of the disabledExpressionList 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 disabledExpressionList property. * *

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

     *    getDisabledExpressionList().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getDisabledExpressionList() { if (disabledExpressionList == null) { disabledExpressionList = new ArrayList(); } return this.disabledExpressionList; } /** * Sets the value of the disabledExpressionList property. * * @param disabledExpressionList * allowed object is * {@link String } * */ public void setDisabledExpressionList(List disabledExpressionList) { this.disabledExpressionList = disabledExpressionList; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy