// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ObjectConfig complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ObjectConfig"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="mac" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="events" type="{http://www.bakery.at/kippen}eventsElement"/> * <element name="type" type="{http://www.bakery.at/kippen}typeEnum"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectConfig", propOrder = { "mac", "events", "type" }) public class ObjectConfig { @XmlElement(required = true) protected String mac; @XmlElement(required = true) protected EventsElement events; @XmlElement(required = true) protected TypeEnum type; /** * Gets the value of the mac property. * * @return * possible object is * {@link String } * */ public String getMac() { return mac; } /** * Sets the value of the mac property. * * @param value * allowed object is * {@link String } * */ public void setMac(String value) { this.mac = value; } /** * Gets the value of the events property. * * @return * possible object is * {@link EventsElement } * */ public EventsElement getEvents() { return events; } /** * Sets the value of the events property. * * @param value * allowed object is * {@link EventsElement } * */ public void setEvents(EventsElement value) { this.events = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link TypeEnum } * */ public TypeEnum getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link TypeEnum } * */ public void setType(TypeEnum value) { this.type = value; } }