/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2012, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.swes.xml.v200; import javax.xml.bind.JAXBElement; 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.XmlElementRef; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.gml.xml.v321.AbstractTimeGeometricPrimitiveType; import org.geotoolkit.gml.xml.v321.TimeInstantType; import org.geotoolkit.gml.xml.v321.TimePeriodType; import org.w3c.dom.Element; /** * <p>Java class for SensorDescriptionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SensorDescriptionType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="validTime" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/gml/3.2}AbstractTimeGeometricPrimitive"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="data"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <any processContents='lax'/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SensorDescriptionType", propOrder = { "validTime", "data" }) public class SensorDescriptionType { private SensorDescriptionType.ValidTime validTime; @XmlElement(required = true) private SensorDescriptionType.Data data; /** * Gets the value of the validTime property. * * @return * possible object is * {@link SensorDescriptionType.ValidTime } * */ public SensorDescriptionType.ValidTime getValidTime() { return validTime; } /** * Sets the value of the validTime property. * * @param value * allowed object is * {@link SensorDescriptionType.ValidTime } * */ public void setValidTime(SensorDescriptionType.ValidTime value) { this.validTime = value; } /** * Gets the value of the data property. * * @return * possible object is * {@link SensorDescriptionType.Data } * */ public SensorDescriptionType.Data getData() { return data; } /** * Sets the value of the data property. * * @param value * allowed object is * {@link SensorDescriptionType.Data } * */ public void setData(SensorDescriptionType.Data value) { this.data = value; } /** * <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> * <any processContents='lax'/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "any" }) public static class Data { @XmlAnyElement(lax = true) private Object any; /** * Gets the value of the any property. * * @return * possible object is * {@link Element } * {@link Object } * */ public Object getAny() { return any; } /** * Sets the value of the any property. * * @param value * allowed object is * {@link Element } * {@link Object } * */ public void setAny(Object value) { this.any = value; } } /** * <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 ref="{http://www.opengis.net/gml/3.2}AbstractTimeGeometricPrimitive"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "abstractTimeGeometricPrimitive" }) public static class ValidTime { @XmlElementRef(name = "AbstractTimeGeometricPrimitive", namespace = "http://www.opengis.net/gml/3.2", type = JAXBElement.class) private JAXBElement<? extends AbstractTimeGeometricPrimitiveType> abstractTimeGeometricPrimitive; /** * Gets the value of the abstractTimeGeometricPrimitive property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link TimePeriodType }{@code >} * {@link JAXBElement }{@code <}{@link TimeInstantType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractTimeGeometricPrimitiveType }{@code >} * */ public JAXBElement<? extends AbstractTimeGeometricPrimitiveType> getAbstractTimeGeometricPrimitive() { return abstractTimeGeometricPrimitive; } /** * Sets the value of the abstractTimeGeometricPrimitive property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TimePeriodType }{@code >} * {@link JAXBElement }{@code <}{@link TimeInstantType }{@code >} * {@link JAXBElement }{@code <}{@link AbstractTimeGeometricPrimitiveType }{@code >} * */ public void setAbstractTimeGeometricPrimitive(JAXBElement<? extends AbstractTimeGeometricPrimitiveType> value) { this.abstractTimeGeometricPrimitive = ((JAXBElement<? extends AbstractTimeGeometricPrimitiveType> ) value); } } }