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

com.vmware.pbm.PbmCapabilityProfileUpdateSpec Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.pbm;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.DynamicData;


/**
 * 

Java class for PbmCapabilityProfileUpdateSpec complex type. * *

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

 * <complexType name="PbmCapabilityProfileUpdateSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="constraints" type="{urn:pbm}PbmCapabilityConstraints" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PbmCapabilityProfileUpdateSpec", propOrder = { "name", "description", "constraints" }) public class PbmCapabilityProfileUpdateSpec extends DynamicData { protected String name; protected String description; protected PbmCapabilityConstraints constraints; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the constraints property. * * @return * possible object is * {@link PbmCapabilityConstraints } * */ public PbmCapabilityConstraints getConstraints() { return constraints; } /** * Sets the value of the constraints property. * * @param value * allowed object is * {@link PbmCapabilityConstraints } * */ public void setConstraints(PbmCapabilityConstraints value) { this.constraints = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy