/** * * * * $Id$ */ package net.opengis.wfsv; import net.opengis.wfs.BaseRequestType; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Get Diff Type'. * * * * * A GetDiff element contains one or more DifferenceQuery elements that describe a difference * query operation on one feature type. In response to a GetDiff request, a Versioning Web * Feature Service must be able to generate a Transaction command that can be used to alter * features at fromFeatureVersion and alter them into features at toFeatureVersion * * * *

* The following features are supported: *

*

* * @see net.opengis.wfsv.WfsvPackage#getGetDiffType() * @model extendedMetaData="name='GetDiffType' kind='elementOnly'" * @generated */ public interface GetDiffType extends BaseRequestType { /** * Returns the value of the 'Difference Query' containment reference list. * The list contents are of type {@link net.opengis.wfsv.DifferenceQueryType}. * * * * * The DifferenceFilter element is used to gather differences in features matched by a standard * OGC filter at starting and ending featureVersion, and a filter used to match * * * @return the value of the 'Difference Query' containment reference list. * @see net.opengis.wfsv.WfsvPackage#getGetDiffType_DifferenceQuery() * @model type="net.opengis.wfsv.DifferenceQueryType" containment="true" required="true" * extendedMetaData="kind='element' name='DifferenceQuery' namespace='##targetNamespace'" * @generated */ EList getDifferenceQuery(); /** * Returns the value of the 'Output Format' attribute. * The default value is "text/xml; subtype=wfs-transaction/1.1.0". * * * * * The outputFormat attribute is used to specify the output format that the Versioning * Web Feature Service should generate in response to a GetDiff element. The default * value of 'application/xml; subtype=wfsv-transaction/1.1.0' indicates that the output * is an XML document that conforms to the WFS 1.1.0 Transaction definition. For the * purposes of experimentation, vendor extension, or even extensions that serve a * specific community of interest, other acceptable output format values may be used to * specify other formats as long as those values are advertised in the capabilities * document. * * * @return the value of the 'Output Format' attribute. * @see #isSetOutputFormat() * @see #unsetOutputFormat() * @see #setOutputFormat(String) * @see net.opengis.wfsv.WfsvPackage#getGetDiffType_OutputFormat() * @model default="text/xml; subtype=wfs-transaction/1.1.0" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='outputFormat'" * @generated */ String getOutputFormat(); /** * Sets the value of the '{@link net.opengis.wfsv.GetDiffType#getOutputFormat Output Format}' attribute. * * * @param value the new value of the 'Output Format' attribute. * @see #isSetOutputFormat() * @see #unsetOutputFormat() * @see #getOutputFormat() * @generated */ void setOutputFormat(String value); /** * Unsets the value of the '{@link net.opengis.wfsv.GetDiffType#getOutputFormat Output Format}' attribute. * * * @see #isSetOutputFormat() * @see #getOutputFormat() * @see #setOutputFormat(String) * @generated */ void unsetOutputFormat(); /** * Returns whether the value of the '{@link net.opengis.wfsv.GetDiffType#getOutputFormat Output Format}' attribute is set. * * * @return whether the value of the 'Output Format' attribute is set. * @see #unsetOutputFormat() * @see #getOutputFormat() * @see #setOutputFormat(String) * @generated */ boolean isSetOutputFormat(); } // GetDiffType