/* * 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 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.wfs.xml.ResultTypeType; /** * A GetFeatureWithLock request operates identically to a GetFeature request expect that it attempts to lock the * feature instances in the result set and includes a lock identifier in its response to a client. * A lock identifier is an identifier generated by a Web Feature Service that a client application can use, * in subsequent operations, to reference the locked set of feature instances. * * * <p>Java class for GetFeatureWithLockType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GetFeatureWithLockType"> * <complexContent> * <extension base="{http://www.opengis.net/wfs}BaseRequestType"> * <sequence> * <element ref="{http://www.opengis.net/wfs}Query" maxOccurs="unbounded"/> * </sequence> * <attribute name="expiry" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" default="5" /> * <attribute name="resultType" type="{http://www.opengis.net/wfs}ResultTypeType" default="results" /> * <attribute name="outputFormat" type="{http://www.w3.org/2001/XMLSchema}string" default="text/xml; subtype=gml/3.1.1" /> * <attribute name="maxFeatures" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * <attribute name="traverseXlinkDepth" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="traverseXlinkExpiry" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetFeatureWithLockType", propOrder = { "query" }) public class GetFeatureWithLockType extends BaseRequestType { @XmlElement(name = "Query", required = true) private List<QueryType> query; @XmlAttribute @XmlSchemaType(name = "positiveInteger") private Integer expiry; @XmlAttribute private ResultTypeType resultType; @XmlAttribute private String outputFormat; @XmlAttribute @XmlSchemaType(name = "positiveInteger") private Integer maxFeatures; @XmlAttribute private String traverseXlinkDepth; @XmlAttribute @XmlSchemaType(name = "positiveInteger") private Integer traverseXlinkExpiry; /** * Gets the value of the query property. */ public List<QueryType> getQuery() { if (query == null) { query = new ArrayList<QueryType>(); } return this.query; } /** * Gets the value of the expiry property. * * @return * possible object is * {@link Integer } * */ public Integer getExpiry() { if (expiry == null) { return new Integer("5"); } else { return expiry; } } /** * Sets the value of the expiry property. * * @param value * allowed object is * {@link Integer } * */ public void setExpiry(final Integer value) { this.expiry = value; } /** * Gets the value of the resultType property. * * @return * possible object is * {@link ResultTypeType } * */ public ResultTypeType getResultType() { if (resultType == null) { return ResultTypeType.RESULTS; } else { return resultType; } } /** * Sets the value of the resultType property. * * @param value * allowed object is * {@link ResultTypeType } * */ public void setResultType(final ResultTypeType value) { this.resultType = value; } /** * Gets the value of the outputFormat property. * * @return * possible object is * {@link String } * */ public String getOutputFormat() { if (outputFormat == null) { return "text/xml; subtype=gml/3.1.1"; } else { return outputFormat; } } /** * Sets the value of the outputFormat property. * * @param value * allowed object is * {@link String } * */ public void setOutputFormat(final String value) { this.outputFormat = value; } /** * Gets the value of the maxFeatures property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxFeatures() { return maxFeatures; } /** * Sets the value of the maxFeatures property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxFeatures(final Integer value) { this.maxFeatures = value; } /** * Gets the value of the traverseXlinkDepth property. * * @return * possible object is * {@link String } * */ public String getTraverseXlinkDepth() { return traverseXlinkDepth; } /** * Sets the value of the traverseXlinkDepth property. * * @param value * allowed object is * {@link String } * */ public void setTraverseXlinkDepth(final String value) { this.traverseXlinkDepth = value; } /** * Gets the value of the traverseXlinkExpiry property. * * @return * possible object is * {@link Integer } * */ public Integer getTraverseXlinkExpiry() { return traverseXlinkExpiry; } /** * Sets the value of the traverseXlinkExpiry property. * * @param value * allowed object is * {@link Integer } * */ public void setTraverseXlinkExpiry(final Integer value) { this.traverseXlinkExpiry = value; } }