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