![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmCapabilityProfileCreateSpec Maven / Gradle / Ivy
package com.vmware.pbm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.vmware.vim25.DynamicData;
/**
* Java class for PbmCapabilityProfileCreateSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmCapabilityProfileCreateSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="resourceType" type="{urn:pbm}PbmProfileResourceType"/>
* <element name="constraints" type="{urn:pbm}PbmCapabilityConstraints"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmCapabilityProfileCreateSpec", propOrder = {
"name",
"description",
"category",
"resourceType",
"constraints"
})
public class PbmCapabilityProfileCreateSpec
extends DynamicData
{
@XmlElement(required = true)
protected String name;
protected String description;
protected String category;
@XmlElement(required = true)
protected PbmProfileResourceType resourceType;
@XmlElement(required = true)
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 category property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCategory() {
return category;
}
/**
* Sets the value of the category property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCategory(String value) {
this.category = value;
}
/**
* Gets the value of the resourceType property.
*
* @return
* possible object is
* {@link PbmProfileResourceType }
*
*/
public PbmProfileResourceType getResourceType() {
return resourceType;
}
/**
* Sets the value of the resourceType property.
*
* @param value
* allowed object is
* {@link PbmProfileResourceType }
*
*/
public void setResourceType(PbmProfileResourceType value) {
this.resourceType = 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