/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2016, 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.v200; import java.math.BigInteger; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * References the XML schema, format, and encoding of a complex 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"> * <attribute name="mimeType" type="{http://www.opengis.net/ows/2.0}MimeType" /> * <attribute name="encoding" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="schema" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="maximumMegabytes" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "Format") public class Format implements org.geotoolkit.wps.xml.Format{ @XmlAttribute(name = "mimeType") protected String mimeType; @XmlAttribute(name = "encoding") @XmlSchemaType(name = "anyURI") protected String encoding; @XmlAttribute(name = "schema") @XmlSchemaType(name = "anyURI") protected String schema; @XmlAttribute(name = "maximumMegabytes") @XmlSchemaType(name = "positiveInteger") protected Integer maximumMegabytes; @XmlAttribute(name = "default") protected Boolean _default; public Format() { } public Format(final String encoding, final String mimeType, final String schema, final Integer maximumMegabytes) { this.encoding = encoding; this.mimeType = mimeType; this.schema = schema; this.maximumMegabytes = maximumMegabytes; } public Format(final String encoding, final String mimeType, final String schema, final Integer maximumMegabytes, final boolean _default) { this.encoding = encoding; this.mimeType = mimeType; this.schema = schema; this.maximumMegabytes = maximumMegabytes; this._default = _default; } /** * Gets the value of the mimeType property. * * @return * possible object is * {@link String } * */ @Override public String getMimeType() { return mimeType; } /** * Sets the value of the mimeType property. * * @param value * allowed object is * {@link String } * */ @Override public void setMimeType(String value) { this.mimeType = value; } /** * Gets the value of the encoding property. * * @return * possible object is * {@link String } * */ @Override public String getEncoding() { return encoding; } /** * Sets the value of the encoding property. * * @param value * allowed object is * {@link String } * */ @Override public void setEncoding(String value) { this.encoding = value; } /** * Gets the value of the schema property. * * @return * possible object is * {@link String } * */ @Override public String getSchema() { return schema; } /** * Sets the value of the schema property. * * @param value * allowed object is * {@link String } * */ @Override public void setSchema(String value) { this.schema = value; } /** * Gets the value of the maximumMegabytes property. * * @return * possible object is * {@link BigInteger } * */ public Integer getMaximumMegabytes() { return maximumMegabytes; } /** * Sets the value of the maximumMegabytes property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMaximumMegabytes(Integer value) { this.maximumMegabytes = value; } /** * Gets the value of the default property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDefault() { if (_default == null) { return false; } return _default; } /** * Sets the value of the default property. * * @param value * allowed object is * {@link Boolean } * */ public void setDefault(Boolean value) { this._default = value; } @Override public String toString() { StringBuilder sb = new StringBuilder("[").append(this.getClass().getSimpleName()).append("]\n"); if (encoding != null) { sb.append("encoding:").append(encoding).append('\n'); } if (mimeType != null) { sb.append("mimeType:").append(mimeType).append('\n'); } if (schema != null) { sb.append("schema:").append(schema).append('\n'); } if (maximumMegabytes != null) { sb.append("maximumMegabytes:").append(maximumMegabytes).append('\n'); } if (_default != null) { sb.append("_default:").append(_default).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 Format) { final Format that = (Format) object; return Objects.equals(this.encoding, that.encoding) && Objects.equals(this.mimeType, that.mimeType) && Objects.equals(this._default, that._default) && Objects.equals(this.maximumMegabytes, that.maximumMegabytes) && Objects.equals(this.schema, that.schema); } return false; } @Override public int hashCode() { int hash = 7; hash = 97 * hash + Objects.hashCode(this.mimeType); hash = 97 * hash + Objects.hashCode(this.encoding); hash = 97 * hash + Objects.hashCode(this.schema); hash = 97 * hash + Objects.hashCode(this.maximumMegabytes); hash = 97 * hash + Objects.hashCode(this._default); return hash; } }