/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2011, 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.v100; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ServiceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ServiceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element ref="{http://www.opengis.net/wfs}Title"/> * <element ref="{http://www.opengis.net/wfs}Abstract" minOccurs="0"/> * <element ref="{http://www.opengis.net/wfs}Keywords" minOccurs="0"/> * <element ref="{http://www.opengis.net/wfs}OnlineResource"/> * <element ref="{http://www.opengis.net/wfs}Fees" minOccurs="0"/> * <element ref="{http://www.opengis.net/wfs}AccessConstraints" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceType", propOrder = { "name", "title", "_abstract", "keywords", "onlineResource", "fees", "accessConstraints" }) public class ServiceType { @XmlElement(name = "Name", required = true) private String name; @XmlElement(name = "Title", required = true) private String title; @XmlElement(name = "Abstract") private String _abstract; @XmlElement(name = "Keywords") private String keywords; @XmlElement(name = "OnlineResource", required = true) private Object onlineResource; @XmlElement(name = "Fees") private String fees; @XmlElement(name = "AccessConstraints") private String accessConstraints; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the abstract property. * * @return * possible object is * {@link String } * */ public String getAbstract() { return _abstract; } /** * Sets the value of the abstract property. * * @param value * allowed object is * {@link String } * */ public void setAbstract(String value) { this._abstract = value; } /** * Gets the value of the keywords property. * * @return * possible object is * {@link String } * */ public String getKeywords() { return keywords; } /** * Sets the value of the keywords property. * * @param value * allowed object is * {@link String } * */ public void setKeywords(String value) { this.keywords = value; } /** * Gets the value of the onlineResource property. * * @return * possible object is * {@link Object } * */ public Object getOnlineResource() { return onlineResource; } /** * Sets the value of the onlineResource property. * * @param value * allowed object is * {@link Object } * */ public void setOnlineResource(Object value) { this.onlineResource = value; } /** * Gets the value of the fees property. * * @return * possible object is * {@link String } * */ public String getFees() { return fees; } /** * Sets the value of the fees property. * * @param value * allowed object is * {@link String } * */ public void setFees(String value) { this.fees = value; } /** * Gets the value of the accessConstraints property. * * @return * possible object is * {@link String } * */ public String getAccessConstraints() { return accessConstraints; } /** * Sets the value of the accessConstraints property. * * @param value * allowed object is * {@link String } * */ public void setAccessConstraints(String value) { this.accessConstraints = value; } }