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

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

The newest version!

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ProfileExpression complex type. * *

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

 * <complexType name="ProfileExpression">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="negated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProfileExpression", propOrder = { "id", "displayName", "negated" }) @XmlSeeAlso({ ProfileCompositeExpression.class, ProfileSimpleExpression.class }) public class ProfileExpression extends DynamicData { @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String displayName; protected boolean negated; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the negated property. * */ public boolean isNegated() { return negated; } /** * Sets the value of the negated property. * */ public void setNegated(boolean value) { this.negated = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy