/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2013, 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.ows.xml.v200; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * Extended metadata identifying and describing a set of * data. This type shall be extended if needed for each specific OWS to * include additional metadata for each type of dataset. If needed, this * type should first be restricted for each specific OWS to change the * multiplicity (or optionality) of some elements. * * <p>Java class for IdentificationType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="IdentificationType"> * <complexContent> * <extension base="{http://www.opengis.net/ows/2.0}BasicIdentificationType"> * <sequence> * <element ref="{http://www.opengis.net/ows/2.0}BoundingBox" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/ows/2.0}OutputFormat" maxOccurs="unbounded" minOccurs="0"/> * <element ref="{http://www.opengis.net/ows/2.0}AvailableCRS" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IdentificationType", propOrder = { "boundingBox", "outputFormat", "availableCRS" }) public class IdentificationType extends BasicIdentificationType { @XmlElementRef(name = "BoundingBox", namespace = "http://www.opengis.net/ows/2.0", type = JAXBElement.class) private List<JAXBElement<? extends BoundingBoxType>> boundingBox; @XmlElement(name = "OutputFormat") private List<String> outputFormat; @XmlElementRef(name = "AvailableCRS", namespace = "http://www.opengis.net/ows/2.0", type = JAXBElement.class) private List<JAXBElement<String>> availableCRS; /** * Unordered list of zero or more bounding boxes * whose union describes the extent of this * dataset.Gets the value of the boundingBox property. * * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link BoundingBoxType }{@code >} * {@link JAXBElement }{@code <}{@link WGS84BoundingBoxType }{@code >} * * */ public List<JAXBElement<? extends BoundingBoxType>> getBoundingBox() { if (boundingBox == null) { boundingBox = new ArrayList<JAXBElement<? extends BoundingBoxType>>(); } return this.boundingBox; } /** * Unordered list of zero or more references to data * formats supported for server outputs.Gets the value of the outputFormat property. * */ public List<String> getOutputFormat() { if (outputFormat == null) { outputFormat = new ArrayList<String>(); } return this.outputFormat; } /** * Unordered list of zero or more available * coordinate reference systems.Gets the value of the availableCRS property. * * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ public List<JAXBElement<String>> getAvailableCRS() { if (availableCRS == null) { availableCRS = new ArrayList<JAXBElement<String>>(); } return this.availableCRS; } }