/* * 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.wcs.xml.v111; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.gml.xml.v311.ImageCRSType; /** * Association to an image coordinate reference system, either referencing or containing the definition of that reference system. * * <p>Java class for ImageCRSRefType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ImageCRSRefType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/gml}ImageCRS" minOccurs="0"/> * </sequence> * <attGroup ref="{http://www.opengis.net/gml}AssociationAttributeGroup"/> * </restriction> * </complexContent> * </complexType> * </pre> * * @author Guilhem Legal * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageCRSRefType", propOrder = { "imageCRS" }) public class ImageCRSRefType { @XmlElement(name = "ImageCRS", namespace = "http://www.opengis.net/gml") private ImageCRSType imageCRS; @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; /** * An empty constructor used by JAXB */ ImageCRSRefType() { } /** * build a new reference of imageCRS */ public ImageCRSRefType(final ImageCRSType imageCRS, final String remoteSchema, final String type, final String href, final String role, final String arcrole, final String title, final String show, final String actuate) { this.actuate = actuate; this.arcrole = arcrole; this.href = href; this.imageCRS = imageCRS; this.remoteSchema = remoteSchema; this.role = role; this.show = show; this.title = title; this.type = type; } /** * Gets the value of the imageCRS property. * */ public ImageCRSType getImageCRS() { return imageCRS; } /** * 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; } }