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

com.vmware.vim25.InvalidProfileReferenceHost Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for InvalidProfileReferenceHost complex type. * *

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

 * <complexType name="InvalidProfileReferenceHost">
 *   <complexContent>
 *     <extension base="{urn:vim25}RuntimeFault">
 *       <sequence>
 *         <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="host" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *         <element name="profile" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
 *         <element name="profileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InvalidProfileReferenceHost", propOrder = { "reason", "host", "profile", "profileName" }) public class InvalidProfileReferenceHost extends RuntimeFault { protected String reason; protected ManagedObjectReference host; protected ManagedObjectReference profile; protected String profileName; /** * Gets the value of the reason property. * * @return * possible object is * {@link String } * */ public String getReason() { return reason; } /** * Sets the value of the reason property. * * @param value * allowed object is * {@link String } * */ public void setReason(String value) { this.reason = value; } /** * Gets the value of the host property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getHost() { return host; } /** * Sets the value of the host property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setHost(ManagedObjectReference value) { this.host = value; } /** * Gets the value of the profile property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getProfile() { return profile; } /** * Sets the value of the profile property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setProfile(ManagedObjectReference value) { this.profile = value; } /** * Gets the value of the profileName property. * * @return * possible object is * {@link String } * */ public String getProfileName() { return profileName; } /** * Sets the value of the profileName property. * * @param value * allowed object is * {@link String } * */ public void setProfileName(String value) { this.profileName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy