/* * 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.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; /** * <p>Java class for SensorDescriptionUpdatedType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SensorDescriptionUpdatedType"> * <complexContent> * <extension base="{http://www.opengis.net/swes/2.0}SensorChangedType"> * <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> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SensorDescriptionUpdatedType", propOrder = { "validTime" }) public class SensorDescriptionUpdatedType extends SensorChangedType { private SensorDescriptionUpdatedType.ValidTime validTime; /** * Gets the value of the validTime property. * * @return * possible object is * {@link SensorDescriptionUpdatedType.ValidTime } * */ public SensorDescriptionUpdatedType.ValidTime getValidTime() { return validTime; } /** * Sets the value of the validTime property. * * @param value * allowed object is * {@link SensorDescriptionUpdatedType.ValidTime } * */ public void setValidTime(SensorDescriptionUpdatedType.ValidTime value) { this.validTime = 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); } } }