org.soitoolkit.commons.logentry.schema.v1.LogEvent Maven / Gradle / Ivy
package org.soitoolkit.commons.logentry.schema.v1;
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.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="logEntry" type="{urn:org.soitoolkit.commons.logentry.schema:v1}LogEntryType"/>
* <any/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"logEntry",
"any"
})
@XmlRootElement(name = "logEvent")
public class LogEvent {
@XmlElement(required = true)
protected LogEntryType logEntry;
@XmlAnyElement(lax = true)
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy