/* * 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.csw.xml.v200; 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.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.csw.xml.AbstractCswRequest; import org.geotoolkit.ows.xml.RequestBase; import org.apache.sis.util.Version; /** * * XML encoded CSW operation request base, for all operations except Get Capabilities. * * * <p>Java class for RequestBaseType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RequestBaseType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="service" type="{http://www.w3.org/2001/XMLSchema}string" default="CSW" /> * <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" default="2.0.0" /> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RequestBaseType") @XmlSeeAlso({ GetDomainType.class, DescribeRecordType.class, GetRecordByIdType.class, GetRecordsType.class }) public abstract class RequestBaseType implements RequestBase, AbstractCswRequest { @XmlAttribute private String service; @XmlAttribute private String version; /** * An empty constructor used by JAXB */ RequestBaseType() { } /** * Super contructor used by thi child classes * * @param service the name of the service (fixed to "CSW") * @param version the version of the service */ protected RequestBaseType(final String service, final String version) { this.service = service; this.version = version; } /** * Gets the value of the service property. * */ @Override public String getService() { if (service == null) { return "CSW"; } else { return service; } } /** * Sets the value of the service property. * */ public void setService(final String value) { this.service = value; } /** * Gets the value of the version property. * */ @Override public Version getVersion() { if (version != null) { return new Version(version); } return null; } /** * Sets the value of the version property. * */ public void setVersion(final String value) { this.version = value; } /** * Verify if this entry is identical to the specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof RequestBaseType) { final RequestBaseType that = (RequestBaseType) object; return Objects.equals(this.getService(), that.getService()) && Objects.equals(this.version, that.version); } return false; } @Override public int hashCode() { int hash = 3; hash = 59 * hash + (this.getService() != null ? this.getService().hashCode() : 0); hash = 59 * hash + (this.version != null ? this.version.hashCode() : 0); return hash; } @Override public String toString() { StringBuilder s = new StringBuilder("[").append(this.getClass().getSimpleName()).append("]").append('\n'); if (service != null) { s.append("service: ").append(service).append('\n'); } if (version != null) { s.append("version: ").append(version).append('\n'); } return s.toString(); } }