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

com.vmware.pbm.PbmPropertyMismatchFault 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.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