![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmCapabilityProfilePropertyMismatchFault 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PbmCapabilityProfilePropertyMismatchFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmCapabilityProfilePropertyMismatchFault">
* <complexContent>
* <extension base="{urn:pbm}PbmPropertyMismatchFault">
* <sequence>
* <element name="resourcePropertyInstance" type="{urn:pbm}PbmCapabilityPropertyInstance"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmCapabilityProfilePropertyMismatchFault", propOrder = {
"resourcePropertyInstance"
})
@XmlSeeAlso({
PbmIncompatibleVendorSpecificRuleSet.class
})
public class PbmCapabilityProfilePropertyMismatchFault
extends PbmPropertyMismatchFault
{
@XmlElement(required = true)
protected PbmCapabilityPropertyInstance resourcePropertyInstance;
/**
* Gets the value of the resourcePropertyInstance property.
*
* @return
* possible object is
* {@link PbmCapabilityPropertyInstance }
*
*/
public PbmCapabilityPropertyInstance getResourcePropertyInstance() {
return resourcePropertyInstance;
}
/**
* Sets the value of the resourcePropertyInstance property.
*
* @param value
* allowed object is
* {@link PbmCapabilityPropertyInstance }
*
*/
public void setResourcePropertyInstance(PbmCapabilityPropertyInstance value) {
this.resourcePropertyInstance = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy