/* * 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.ebrim.xml.v250; 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.wrs.xml.v090.WRSExtrinsicObjectType; /** * * ExtrinsicObject are attributes from the ExtrinsicObject interface in ebRIM. * It inherits RegistryEntryAttributes * * * <p>Java class for ExtrinsicObjectType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ExtrinsicObjectType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:rim:xsd:2.5}RegistryEntryType"> * <attribute name="mimeType" type="{urn:oasis:names:tc:ebxml-regrep:rim:xsd:2.5}LongName" default="application/octet-stream" /> * <attribute name="isOpaque" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExtrinsicObjectType") @XmlSeeAlso({ WRSExtrinsicObjectType.class }) @XmlRootElement( name = "ExtrinsicObject") public class ExtrinsicObjectType extends RegistryEntryType { @XmlAttribute private String mimeType; @XmlAttribute private Boolean isOpaque; /** * Gets the value of the mimeType property. */ public String getMimeType() { if (mimeType == null) { return "application/octet-stream"; } else { return mimeType; } } /** * Sets the value of the mimeType property. */ public void setMimeType(final String value) { this.mimeType = value; } /** * Gets the value of the isOpaque property. */ public boolean getIsOpaque() { if (isOpaque == null) { return false; } else { return isOpaque; } } /** * Sets the value of the isOpaque property. */ public void setIsOpaque(final Boolean value) { this.isOpaque = value; } @Override public String toString() { final StringBuilder sb = new StringBuilder(super.toString()); if (mimeType != null) { sb.append("mimeType:").append(mimeType).append('\n'); } if (isOpaque != null) { sb.append("isOpaque:").append(isOpaque).append('\n'); } return sb.toString(); } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (obj instanceof ExtrinsicObjectType && super.equals(obj)) { final ExtrinsicObjectType that = (ExtrinsicObjectType) obj; return Objects.equals(this.isOpaque, that.isOpaque) && Objects.equals(this.getMimeType(), that.getMimeType()); } return false; } @Override public int hashCode() { int hash = 7; hash = 47 * hash + super.hashCode(); hash = 47 * hash + (this.getMimeType() != null ? this.getMimeType().hashCode() : 0); hash = 47 * hash + (this.isOpaque != null ? this.isOpaque.hashCode() : 0); return hash; } }