/* * 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.wms.xml.v130; import java.util.ArrayList; import java.util.Collections; 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.wms.xml.AbstractOperation; /** * * For each operation offered by the server, list the available output * formats and the online resource. * * * <p>Java class for OperationType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="OperationType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/wms}Format" maxOccurs="unbounded"/> * <element ref="{http://www.opengis.net/wms}DCPType" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * @author Guilhem Legal * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OperationType", propOrder = { "format", "dcpType" }) public class OperationType implements AbstractOperation { @XmlElement(name = "Format", required = true) private List<String> format = new ArrayList<String>(); @XmlElement(name = "DCPType", required = true) private List<DCPType> dcpType = new ArrayList<DCPType>(); /** * An empty constructor used by JAXB. */ OperationType() { } public OperationType(final OperationType that) { if (that != null) { if (that.format != null) { this.format = new ArrayList<String>(that.format); } if (that.dcpType != null) { for (final DCPType element : that.dcpType) { this.dcpType.add(new DCPType(element)); } } } } /** * Build a new Contact person primary object. */ public OperationType(final List<String> format, final DCPType... dcpTypes) { this.format = format; if (dcpTypes != null) { for (final DCPType element : dcpTypes) { this.dcpType.add(element); } } } /** * Gets the value of the format property. * */ public List<String> getFormat() { return Collections.unmodifiableList(format); } /** * Gets the string values of the available formats. */ public List<String> getFormats() { return getFormat(); } /** * Gets the value of the dcpType property. */ public List<DCPType> getDCPType() { return Collections.unmodifiableList(dcpType); } public void updateURL(final String url) { for (DCPType dcp : dcpType) { final HTTP http = dcp.getHTTP(); if (http != null) { final Get get = http.getGet(); if (get != null) { OnlineResource or = get.getOnlineResource(); if (or != null) { or.setHref(url); } } final Post post = http.getPost(); if (post != null) { OnlineResource or = post.getOnlineResource(); if (or != null) { or.setHref(url); } } } } } }