/* * 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 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.XmlType; import javax.xml.namespace.QName; import org.geotoolkit.ogc.xml.v110.FilterType; /** * This type defines the Lock element. * The Lock element defines a locking operation on feature instances of a single type. * An OGC Filter is used to constrain the scope of the operation. * Features to be locked can be identified individually by using their feature identifier * or they can be locked by satisfying the spatial and non-spatial constraints defined in the filter. * * * <p>Java class for LockType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LockType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/ogc}Filter" minOccurs="0"/> * </sequence> * <attribute name="handle" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="typeName" use="required" type="{http://www.w3.org/2001/XMLSchema}QName" /> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LockType", propOrder = { "filter" }) public class LockType { @XmlElement(name = "Filter", namespace = "http://www.opengis.net/ogc") private FilterType filter; @XmlAttribute private String handle; @XmlAttribute(required = true) private QName typeName; public LockType() { } public LockType(final FilterType filter, final String handle, final QName typeName) { this.filter = filter; this.handle = handle; this.typeName = typeName; } /** * Gets the value of the filter property. * * @return * possible object is * {@link FilterType } * */ public FilterType getFilter() { return filter; } /** * Sets the value of the filter property. * * @param value * allowed object is * {@link FilterType } * */ public void setFilter(final FilterType value) { this.filter = value; } /** * Gets the value of the handle property. * * @return * possible object is * {@link String } * */ public String getHandle() { return handle; } /** * Sets the value of the handle property. * * @param value * allowed object is * {@link String } * */ public void setHandle(final String value) { this.handle = value; } /** * Gets the value of the typeName property. * * @return * possible object is * {@link QName } * */ public QName getTypeName() { return typeName; } /** * Sets the value of the typeName property. * * @param value * allowed object is * {@link QName } * */ public void setTypeName(final QName value) { this.typeName = value; } }