/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, 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.observation.xml.v100; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ObservationPropertyType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ObservationPropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence minOccurs="0"> * <element ref="{http://www.opengis.net/om/1.0}Observation"/> * </sequence> * <attGroup ref="{http://www.opengis.net/gml}AssociationAttributeGroup"/> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObservationPropertyType", propOrder = { "observation" }) public class ObservationPropertyType { @XmlElementRefs({ @XmlElementRef(name = "Observation", namespace = "http://www.opengis.net/om/1.0", type = JAXBElement.class), @XmlElementRef(name = "Measurement", namespace = "http://www.opengis.net/om/1.0", type = JAXBElement.class) }) private JAXBElement<? extends ObservationType> observation; @XmlAttribute(namespace = "http://www.opengis.net/gml") @XmlSchemaType(name = "anyURI") private String remoteSchema; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String type; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String href; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String role; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String arcrole; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String title; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String show; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String actuate; @XmlTransient private ObjectFactory omFactory = new ObjectFactory(); /** * A JAXB constructor. */ ObservationPropertyType(){ } /** * A JAXB constructor. */ public ObservationPropertyType(final ObservationType observation) { if (observation instanceof MeasurementType) { this.observation = omFactory.createMeasurement((MeasurementType) observation); } else { this.observation = omFactory.createObservation(observation); } } /** * A JAXB constructor. */ public ObservationPropertyType(final String title) { this.title = title; } /** * Gets the value of the observation property. */ public ObservationType getObservation() { if (observation != null) { return observation.getValue(); } return null; } /** * Gets the value of the remoteSchema property. */ public String getRemoteSchema() { return remoteSchema; } /** * Gets the value of the type property. */ public String getType() { if (type == null) { return "simple"; } else { return type; } } /** * Gets the value of the href property. */ public String getHref() { return href; } /** * Gets the value of the role property. */ public String getRole() { return role; } /** * Gets the value of the arcrole property. */ public String getArcrole() { return arcrole; } /** * Gets the value of the title property. */ public String getTitle() { return title; } /** * Gets the value of the show property. */ public String getShow() { return show; } /** * Gets the value of the actuate property. */ public String getActuate() { return actuate; } }