/** * * * * $Id$ */ package net.opengis.wfs; import javax.xml.namespace.QName; import org.eclipse.emf.ecore.EObject; import org.opengis.filter.Filter; /** * * A representation of the model object 'Delete Element Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getDeleteElementType() * @model extendedMetaData="name='DeleteElementType' kind='elementOnly'" * @generated */ public interface DeleteElementType extends EObject { /** * Returns the value of the 'Filter' attribute. * * * * * The Filter element is used to constrain the scope * of the delete operation to those features identified * by the filter. Feature instances can be specified * explicitly and individually using the identifier of * each feature instance OR a set of features to be * operated on can be identified by specifying spatial * and non-spatial constraints in the filter. * If no filter is specified then an exception should * be raised since it is unlikely that a client application * intends to delete all feature instances. * * * @return the value of the 'Filter' attribute. * @see #setFilter(Object) * @see net.opengis.wfs.WFSPackage#getDeleteElementType_Filter() * @model */ Filter getFilter(); /** * Sets the value of the '{@link net.opengis.wfs.DeleteElementType#getFilter Filter}' attribute. * * * @param value the new value of the 'Filter' attribute. * @see #getFilter() * @generated */ void setFilter(Filter value); /** * Returns the value of the 'Handle' attribute. * * * * * The handle attribute allows a client application * to assign a client-generated request identifier * to an Insert action. The handle is included to * facilitate error reporting. If a Delete action * in a Transaction request fails, then a WFS may * include the handle in an exception report to localize * the error. If no handle is included of the offending * Insert element then a WFS may employee other means of * localizing the error (e.g. line number). * * @return the value of the 'Handle' attribute. * @see #setHandle(String) * @see net.opengis.wfs.WfsPackage#getDeleteElementType_Handle() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='handle'" * @generated */ String getHandle(); /** * Sets the value of the '{@link net.opengis.wfs.DeleteElementType#getHandle Handle}' attribute. * * * @param value the new value of the 'Handle' attribute. * @see #getHandle() * @generated */ void setHandle(String value); /** * Returns the value of the 'Type Name' attribute. * * * * * The value of the typeName attribute is the name * of the feature type to be updated. The name * specified must be a valid type that belongs to * the feature content as defined by the GML * Application Schema. * * * @return the value of the 'Type Name' attribute. * @see #setTypeName(Object) * @see net.opengis.wfs.WFSPackage#getDeleteElementType_TypeName() * @model */ QName getTypeName(); /** * Sets the value of the '{@link net.opengis.wfs.DeleteElementType#getTypeName Type Name}' attribute. * * * @param value the new value of the 'Type Name' attribute. * @see #getTypeName() * @generated */ void setTypeName(QName value); } // DeleteElementType