/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-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: 2011.03.17 at 12:58:43 PM EDT // package org.opennms.xmlns.xsd.event; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ver" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="dpName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="created" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="mstation" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "ver", "dpName", "created", "mstation" }) @XmlRootElement(name = "header") public class Header { @XmlElement(required = true) protected String ver; @XmlElement(required = true) protected String dpName; @XmlElement(required = true) protected String created; @XmlElement(required = true) protected String mstation; /** * Gets the value of the ver property. * * @return * possible object is * {@link String } * */ public String getVer() { return ver; } /** * Sets the value of the ver property. * * @param value * allowed object is * {@link String } * */ public void setVer(String value) { this.ver = value; } /** * Gets the value of the dpName property. * * @return * possible object is * {@link String } * */ public String getDpName() { return dpName; } /** * Sets the value of the dpName property. * * @param value * allowed object is * {@link String } * */ public void setDpName(String value) { this.dpName = value; } /** * Gets the value of the created property. * * @return * possible object is * {@link String } * */ public String getCreated() { return created; } /** * Sets the value of the created property. * * @param value * allowed object is * {@link String } * */ public void setCreated(String value) { this.created = value; } /** * Gets the value of the mstation property. * * @return * possible object is * {@link String } * */ public String getMstation() { return mstation; } /** * Sets the value of the mstation property. * * @param value * allowed object is * {@link String } * */ public void setMstation(String value) { this.mstation = value; } }