/* * 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.ows.xml.v110; import java.util.ArrayList; import java.util.List; import java.util.Collections; 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; /** * Prioritized sequence of one or more specification versions accepted by client, with preferred versions listed first. See Version negotiation subclause for more information. * * <p>Java class for AcceptVersionsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AcceptVersionsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Version" type="{http://www.opengis.net/ows/1.1}VersionType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * @author Guilhem Legal * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AcceptVersionsType", propOrder = { "version" }) public class AcceptVersionsType implements org.geotoolkit.ows.xml.AcceptVersions { @XmlElement(name = "Version", required = true) private List<String> version; /** * Empty constructor used by JAXB. */ AcceptVersionsType(){ } /** * Build a new List of acceptVersion. */ public AcceptVersionsType(final String... versions){ version = new ArrayList<String>(); for (String v: versions) { version.add(v); } } public AcceptVersionsType(final List<String> version){ this.version = version; } /** * Gets the value of the version property. */ @Override public List<String> getVersion() { if (version == null) { version = new ArrayList<String>(); } return Collections.unmodifiableList(version); } /** * Add a new accepted version to the list. * * @param version a number of version. */ @Override public void addVersion(final String version) { this.version.add(version); } public void addFirstVersion(final String version) { this.version.add(0, version); } /** * Verify that this entry is identical to the specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof AcceptVersionsType) { final AcceptVersionsType that = (AcceptVersionsType) object; return Objects.equals(this.version, that.version); } return false; } @Override public int hashCode() { int hash = 7; hash = 17 * hash + (this.version != null ? this.version.hashCode() : 0); return hash; } @Override public String toString() { final StringBuilder sb = new StringBuilder("[AcceptVersionsType]\n"); if (version != null) { for (String v : version) { sb.append(v).append('\n'); } } return sb.toString(); } }