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

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

The 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"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EventEx", propOrder = { "eventTypeId", "severity", "message", "arguments", "objectId", "objectType" }) 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; /** * 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; } /** * Sets the value of the arguments property. * * @param arguments * allowed object is * {@link KeyAnyValue } * */ public void setArguments(List arguments) { this.arguments = arguments; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy