All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geojsf.model.xml.specs.wfs.GetFeature Maven / Gradle / Ivy

The newest version!

package org.geojsf.model.xml.specs.wfs;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.opengis.net/wfs}Query"/>
 *       </sequence>
 *       <attribute name="service" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="outputFormat" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="viewParams" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "query" }) @XmlRootElement(name = "GetFeature") public class GetFeature implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Query", required = true) protected Query query; @XmlAttribute(name = "service") protected String service; @XmlAttribute(name = "version") protected String version; @XmlAttribute(name = "outputFormat") protected String outputFormat; @XmlAttribute(name = "viewParams") protected String viewParams; /** * Gets the value of the query property. * * @return * possible object is * {@link Query } * */ public Query getQuery() { return query; } /** * Sets the value of the query property. * * @param value * allowed object is * {@link Query } * */ public void setQuery(Query value) { this.query = value; } public boolean isSetQuery() { return (this.query!= null); } /** * Gets the value of the service property. * * @return * possible object is * {@link String } * */ public String getService() { return service; } /** * Sets the value of the service property. * * @param value * allowed object is * {@link String } * */ public void setService(String value) { this.service = value; } public boolean isSetService() { return (this.service!= null); } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } public boolean isSetVersion() { return (this.version!= null); } /** * Gets the value of the outputFormat property. * * @return * possible object is * {@link String } * */ public String getOutputFormat() { return outputFormat; } /** * Sets the value of the outputFormat property. * * @param value * allowed object is * {@link String } * */ public void setOutputFormat(String value) { this.outputFormat = value; } public boolean isSetOutputFormat() { return (this.outputFormat!= null); } /** * Gets the value of the viewParams property. * * @return * possible object is * {@link String } * */ public String getViewParams() { return viewParams; } /** * Sets the value of the viewParams property. * * @param value * allowed object is * {@link String } * */ public void setViewParams(String value) { this.viewParams = value; } public boolean isSetViewParams() { return (this.viewParams!= null); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy