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

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

The newest version!

package com.vmware.vim25;

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


/**
 * 

Java class for HealthStatusChangedEvent complex type. * *

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

 * <complexType name="HealthStatusChangedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}Event">
 *       <sequence>
 *         <element name="componentId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="oldStatus" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="newStatus" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="componentName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="serviceId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HealthStatusChangedEvent", propOrder = { "componentId", "oldStatus", "newStatus", "componentName", "serviceId" }) public class HealthStatusChangedEvent extends Event { @XmlElement(required = true) protected String componentId; @XmlElement(required = true) protected String oldStatus; @XmlElement(required = true) protected String newStatus; @XmlElement(required = true) protected String componentName; protected String serviceId; /** * Gets the value of the componentId property. * * @return * possible object is * {@link String } * */ public String getComponentId() { return componentId; } /** * Sets the value of the componentId property. * * @param value * allowed object is * {@link String } * */ public void setComponentId(String value) { this.componentId = value; } /** * Gets the value of the oldStatus property. * * @return * possible object is * {@link String } * */ public String getOldStatus() { return oldStatus; } /** * Sets the value of the oldStatus property. * * @param value * allowed object is * {@link String } * */ public void setOldStatus(String value) { this.oldStatus = value; } /** * Gets the value of the newStatus property. * * @return * possible object is * {@link String } * */ public String getNewStatus() { return newStatus; } /** * Sets the value of the newStatus property. * * @param value * allowed object is * {@link String } * */ public void setNewStatus(String value) { this.newStatus = value; } /** * Gets the value of the componentName property. * * @return * possible object is * {@link String } * */ public String getComponentName() { return componentName; } /** * Sets the value of the componentName property. * * @param value * allowed object is * {@link String } * */ public void setComponentName(String value) { this.componentName = value; } /** * Gets the value of the serviceId property. * * @return * possible object is * {@link String } * */ public String getServiceId() { return serviceId; } /** * Sets the value of the serviceId property. * * @param value * allowed object is * {@link String } * */ public void setServiceId(String value) { this.serviceId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy