/* * 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.wps.xml.v100; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.ows.xml.v110.CodeType; import org.geotoolkit.ows.xml.v110.LanguageStringType; import org.geotoolkit.wps.xml.DataDescription; import org.geotoolkit.wps.xml.OutputDescription; /** * Description of a process Output. * * In this use, the DescriptionType shall describe this process output. * * <p>Java class for OutputDescriptionType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="OutputDescriptionType"> * <complexContent> * <extension base="{http://www.opengis.net/wps/1.0.0}DescriptionType"> * <group ref="{http://www.opengis.net/wps/1.0.0}OutputFormChoice"/> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OutputDescriptionType", propOrder = { "complexOutput", "literalOutput", "boundingBoxOutput" }) public class OutputDescriptionType extends DescriptionType implements OutputDescription { @XmlElement(name = "ComplexOutput", namespace = "") protected SupportedComplexDataInputType complexOutput; @XmlElement(name = "LiteralOutput", namespace = "") protected LiteralOutputType literalOutput; @XmlElement(name = "BoundingBoxOutput", namespace = "") protected SupportedCRSsType boundingBoxOutput; public OutputDescriptionType() { } public OutputDescriptionType(CodeType identifier, LanguageStringType title, LanguageStringType _abstract, DataDescription dataDescription) { super(identifier, title, _abstract); if (dataDescription instanceof SupportedComplexDataInputType) { this.complexOutput = (SupportedComplexDataInputType) dataDescription; } else if (dataDescription instanceof LiteralOutputType) { this.literalOutput = (LiteralOutputType) dataDescription; } else if (dataDescription instanceof SupportedCRSsType) { this.boundingBoxOutput = (SupportedCRSsType) dataDescription; } else if (dataDescription != null) { throw new IllegalArgumentException("unecpected data description type:" + dataDescription.getClass().getName()); } } /** * Gets the value of the complexOutput property. * * @return * possible object is * {@link SupportedComplexDataType } * */ public SupportedComplexDataType getComplexOutput() { return complexOutput; } /** * Sets the value of the complexOutput property. * * @param value * allowed object is * {@link SupportedComplexDataType } * */ public void setComplexOutput(final SupportedComplexDataInputType value) { this.complexOutput = value; } /** * Gets the value of the literalOutput property. * * @return * possible object is * {@link LiteralOutputType } * */ public LiteralOutputType getLiteralOutput() { return literalOutput; } /** * Sets the value of the literalOutput property. * * @param value * allowed object is * {@link LiteralOutputType } * */ public void setLiteralOutput(final LiteralOutputType value) { this.literalOutput = value; } /** * Gets the value of the boundingBoxOutput property. * * @return * possible object is * {@link SupportedCRSsType } * */ public SupportedCRSsType getBoundingBoxOutput() { return boundingBoxOutput; } /** * Sets the value of the boundingBoxOutput property. * * @param value * allowed object is * {@link SupportedCRSsType } * */ public void setBoundingBoxOutput(final SupportedCRSsType value) { this.boundingBoxOutput = value; } @Override public String toString() { StringBuilder sb = new StringBuilder(super.toString()).append("\n"); if (boundingBoxOutput != null) { sb.append("boundingBoxOutput:").append(boundingBoxOutput).append('\n'); } if (complexOutput != null) { sb.append("complexOutput:").append(complexOutput).append('\n'); } if (literalOutput != null) { sb.append("literalOutput:\n").append(literalOutput).append('\n'); } return sb.toString(); } /** * Verify that this entry is identical to the specified object. * @param object Object to compare */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof OutputDescriptionType && super.equals(object)) { final OutputDescriptionType that = (OutputDescriptionType) object; return Objects.equals(this.boundingBoxOutput, that.boundingBoxOutput) && Objects.equals(this.complexOutput, that.complexOutput) && Objects.equals(this.literalOutput, that.literalOutput); } return false; } @Override public int hashCode() { int hash = 3; hash = 83 * hash + Objects.hashCode(this.complexOutput); hash = 83 * hash + Objects.hashCode(this.literalOutput); hash = 83 * hash + Objects.hashCode(this.boundingBoxOutput); return hash; } }