/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2013, 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.v200; import java.util.ArrayList; import java.util.Arrays; import java.util.List; 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.ows.xml.Sections; /** * Unordered list of zero or more names of requested * sections in complete service metadata document. Each Section value shall * contain an allowed section name as specified by each OWS specification. * See Sections parameter subclause for more information. * * <p>Java class for SectionsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SectionsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Section" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SectionsType", propOrder = { "section" }) public class SectionsType implements Sections { @XmlElement(name = "Section") private List<String> section; /** * Empty constructor used bye JAXB. */ SectionsType(){ } /** * Build a new list of Section. */ public SectionsType(final List<String> section){ this.section = section; } /** * Build a new list of Section. */ public SectionsType(final String section){ this.section = Arrays.asList(section); } /** * Gets the value of the section property. * */ @Override public List<String> getSection() { if (section == null) { section = new ArrayList<String>(); } return this.section; } /** * Return true if the Sections contains the specified section. * * @param sectionName The name of the searched section. * @return true if the Section contains the specified section. */ @Override public boolean containsSection(final String sectionName) { if (section != null) { for (String s : section) { if (s.equalsIgnoreCase(sectionName)) { return true; } } } return false; } /** * Add a new section to the list. * * @param section a new section. */ @Override public void add(final String section) { this.section.add(section); } }