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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import java.util.ArrayList;
import java.util.List;
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 EventEx complex type. * *

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

 * <complexType name="EventEx">
 *   <complexContent>
 *     <extension base="{urn:vim25}Event">
 *       <sequence>
 *         <element name="eventTypeId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="severity" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="arguments" type="{urn:vim25}KeyAnyValue" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="objectId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="objectType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="objectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fault" type="{urn:vim25}LocalizedMethodFault" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventEx", propOrder = { "eventTypeId", "severity", "message", "arguments", "objectId", "objectType", "objectName", "fault" }) public class EventEx extends Event { @XmlElement(required = true) protected String eventTypeId; protected String severity; protected String message; protected List arguments; protected String objectId; protected String objectType; protected String objectName; protected LocalizedMethodFault fault; /** * Gets the value of the eventTypeId property. * * @return * possible object is * {@link String } * */ public String getEventTypeId() { return eventTypeId; } /** * Sets the value of the eventTypeId property. * * @param value * allowed object is * {@link String } * */ public void setEventTypeId(String value) { this.eventTypeId = value; } /** * Gets the value of the severity property. * * @return * possible object is * {@link String } * */ public String getSeverity() { return severity; } /** * Sets the value of the severity property. * * @param value * allowed object is * {@link String } * */ public void setSeverity(String value) { this.severity = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the arguments property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the arguments property. * *

* For example, to add a new item, do as follows: *

     *    getArguments().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link KeyAnyValue } * * */ public List getArguments() { if (arguments == null) { arguments = new ArrayList(); } return this.arguments; } /** * Gets the value of the objectId property. * * @return * possible object is * {@link String } * */ public String getObjectId() { return objectId; } /** * Sets the value of the objectId property. * * @param value * allowed object is * {@link String } * */ public void setObjectId(String value) { this.objectId = value; } /** * Gets the value of the objectType property. * * @return * possible object is * {@link String } * */ public String getObjectType() { return objectType; } /** * Sets the value of the objectType property. * * @param value * allowed object is * {@link String } * */ public void setObjectType(String value) { this.objectType = value; } /** * Gets the value of the objectName property. * * @return * possible object is * {@link String } * */ public String getObjectName() { return objectName; } /** * Sets the value of the objectName property. * * @param value * allowed object is * {@link String } * */ public void setObjectName(String value) { this.objectName = value; } /** * Gets the value of the fault property. * * @return * possible object is * {@link LocalizedMethodFault } * */ public LocalizedMethodFault getFault() { return fault; } /** * Sets the value of the fault property. * * @param value * allowed object is * {@link LocalizedMethodFault } * */ public void setFault(LocalizedMethodFault value) { this.fault = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy