/* * 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.wfs.xml.v110; 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.XmlElement; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.util.Utilities; import org.geotoolkit.wfs.xml.FeatureType; import org.geotoolkit.wfs.xml.FeatureTypeList; /** * * A list of feature types available from this server. * * * <p>Java class for FeatureTypeListType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="FeatureTypeListType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Operations" type="{http://www.opengis.net/wfs}OperationsType" minOccurs="0"/> * <element name="FeatureType" type="{http://www.opengis.net/wfs}FeatureTypeType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FeatureTypeListType", propOrder = { "operations", "featureType" }) public class FeatureTypeListType implements FeatureTypeList { @XmlElement(name = "Operations") private OperationsType operations; @XmlElement(name = "FeatureType", required = true) private List<FeatureTypeType> featureType; public FeatureTypeListType() { } public FeatureTypeListType(final OperationsType operations, final List<FeatureTypeType> featureType) { this.featureType = featureType; this.operations = operations; } /** * Gets the value of the operations property. * * @return * possible object is * {@link OperationsType } * */ public OperationsType getOperations() { return operations; } /** * Sets the value of the operations property. * * @param value * allowed object is * {@link OperationsType } * */ public void setOperations(final OperationsType value) { this.operations = value; } /** * Gets the value of the featureType property. */ @Override public List<FeatureTypeType> getFeatureType() { if (featureType == null) { featureType = new ArrayList<FeatureTypeType>(); } return this.featureType; } public void setFeatureType(final List<FeatureTypeType> featureType) { this.featureType = featureType; } @Override public void addFeatureType(final FeatureType ft) { if (ft instanceof FeatureTypeType) { getFeatureType().add((FeatureTypeType)ft); } else if (ft != null) { throw new IllegalArgumentException("unexpected version of the featureType object"); } } /** * Verify if this entry is identical to specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof FeatureTypeListType) { final FeatureTypeListType that = (FeatureTypeListType) object; return Objects.equals(this.featureType, that.featureType) && Objects.equals(this.operations, that.operations); } return false; } @Override public int hashCode() { int hash = 3; hash = 79 * hash + (this.operations != null ? this.operations.hashCode() : 0); hash = 79 * hash + (this.featureType != null ? this.featureType.hashCode() : 0); return hash; } @Override public String toString() { StringBuilder s = new StringBuilder("[FeatureTypeListType]\n"); if(featureType != null) { s.append("featureType:\n"); for (FeatureTypeType feat : featureType) { s.append(feat).append('\n'); } } if (operations != null) s.append("operations:").append(operations).append('\n'); return s.toString(); } }