// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.10.10 at 02:09:32 PM CEST // package at.bakery.kippen.config; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for eventConfig complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="eventConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="commands" type="{http://www.bakery.at/kippen}CommandElement"/> * </sequence> * <attribute name="eventType" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "eventConfig", propOrder = { "commands" }) public class EventConfig { @XmlElement(required = true) protected CommandElement commands; @XmlAttribute(name = "eventType") protected String eventType; /** * Gets the value of the commands property. * * @return * possible object is * {@link CommandElement } * */ public CommandElement getCommands() { return commands; } /** * Sets the value of the commands property. * * @param value * allowed object is * {@link CommandElement } * */ public void setCommands(CommandElement value) { this.commands = value; } /** * Gets the value of the eventType property. * * @return * possible object is * {@link String } * */ public String getEventType() { return eventType; } /** * Sets the value of the eventType property. * * @param value * allowed object is * {@link String } * */ public void setEventType(String value) { this.eventType = value; } }