/* * 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.ArrayList; import java.util.List; 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.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ServiceBindingType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ServiceBindingType"> * <complexContent> * <extension base="{urn:oasis:names:tc:ebxml-regrep:rim:xsd:2.5}RegistryObjectType"> * <sequence> * <element ref="{urn:oasis:names:tc:ebxml-regrep:rim:xsd:2.5}SpecificationLink" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="service" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="accessURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="targetBinding" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceBindingType", propOrder = { "specificationLink" }) @XmlRootElement(name = "ServiceBinding") public class ServiceBindingType extends RegistryObjectType { @XmlElement(name = "SpecificationLink") private List<SpecificationLinkType> specificationLink; @XmlAttribute @XmlSchemaType(name = "anyURI") private String service; @XmlAttribute @XmlSchemaType(name = "anyURI") private String accessURI; @XmlAttribute @XmlSchemaType(name = "anyURI") private String targetBinding; /** * Gets the value of the specificationLink property. */ public List<SpecificationLinkType> getSpecificationLink() { if (specificationLink == null) { specificationLink = new ArrayList<SpecificationLinkType>(); } return this.specificationLink; } /** * Sets the value of the specificationLink property. */ public void setSpecificationLink(final SpecificationLinkType specification) { if (this.specificationLink == null) { this.specificationLink = new ArrayList<SpecificationLinkType>(); } this.specificationLink.add(specification); } /** * Sets the value of the specificationLink property. */ public void setSpecificationLink(final List<SpecificationLinkType> specification) { this.specificationLink = specification; } /** * Gets the value of the service property. */ public String getService() { return service; } /** * Sets the value of the service property. */ public void setService(final String value) { this.service = value; } /** * Gets the value of the accessURI property. */ public String getAccessURI() { return accessURI; } /** * Sets the value of the accessURI property. */ public void setAccessURI(final String value) { this.accessURI = value; } /** * Gets the value of the targetBinding property. */ public String getTargetBinding() { return targetBinding; } /** * Sets the value of the targetBinding property. */ public void setTargetBinding(final String value) { this.targetBinding = value; } @Override public String toString() { final StringBuilder sb = new StringBuilder(super.toString()); if (accessURI != null) { sb.append("accessURI:").append(accessURI).append('\n'); } if (service != null) { sb.append("service:").append(service).append('\n'); } if (targetBinding != null) { sb.append("targetBinding:").append(targetBinding).append('\n'); } if (specificationLink != null) { sb.append("specificationLink:\n"); for (SpecificationLinkType sbi : specificationLink) { sb.append(sbi).append('\n'); } } return sb.toString(); } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (obj instanceof ServiceBindingType && super.equals(obj)) { final ServiceBindingType that = (ServiceBindingType) obj; return Objects.equals(this.accessURI, that.accessURI) && Objects.equals(this.service, that.service) && Objects.equals(this.specificationLink, that.specificationLink) && Objects.equals(this.targetBinding, that.targetBinding); } return false; } @Override public int hashCode() { int hash = 7; hash = 53 * hash + super.hashCode(); hash = 53 * hash + (this.specificationLink != null ? this.specificationLink.hashCode() : 0); hash = 53 * hash + (this.service != null ? this.service.hashCode() : 0); hash = 53 * hash + (this.accessURI != null ? this.accessURI.hashCode() : 0); hash = 53 * hash + (this.targetBinding != null ? this.targetBinding.hashCode() : 0); return hash; } }