/** * * * * $Id$ */ package net.opengis.wfs20; import java.util.Map; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Base Request Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getBaseRequestType() * @model abstract="true" * extendedMetaData="name='BaseRequestType' kind='empty'" * @generated */ public interface BaseRequestType extends EObject { /** * Returns the value of the 'Handle' attribute. * *

* If the meaning of the 'Handle' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Handle' attribute. * @see #setHandle(String) * @see net.opengis.wfs20.Wfs20Package#getBaseRequestType_Handle() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='handle'" * @generated */ String getHandle(); /** * Sets the value of the '{@link net.opengis.wfs20.BaseRequestType#getHandle Handle}' attribute. * * * @param value the new value of the 'Handle' attribute. * @see #getHandle() * @generated */ void setHandle(String value); /** * Returns the value of the 'Service' attribute. * The default value is "WFS". * *

* If the meaning of the 'Service' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Service' attribute. * @see #isSetService() * @see #unsetService() * @see #setService(String) * @see net.opengis.wfs20.Wfs20Package#getBaseRequestType_Service() * @model default="WFS" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='service'" * @generated */ String getService(); /** * Sets the value of the '{@link net.opengis.wfs20.BaseRequestType#getService Service}' attribute. * * * @param value the new value of the 'Service' attribute. * @see #isSetService() * @see #unsetService() * @see #getService() * @generated */ void setService(String value); /** * Unsets the value of the '{@link net.opengis.wfs20.BaseRequestType#getService Service}' attribute. * * * @see #isSetService() * @see #getService() * @see #setService(String) * @generated */ void unsetService(); /** * Returns whether the value of the '{@link net.opengis.wfs20.BaseRequestType#getService Service}' attribute is set. * * * @return whether the value of the 'Service' attribute is set. * @see #unsetService() * @see #getService() * @see #setService(String) * @generated */ boolean isSetService(); /** * Returns the value of the 'Version' attribute. * The default value is "2.0.0". * *

* If the meaning of the 'Version' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Version' attribute. * @see #isSetVersion() * @see #unsetVersion() * @see #setVersion(String) * @see net.opengis.wfs20.Wfs20Package#getBaseRequestType_Version() * @model default="2.0.0" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='version'" * @generated */ String getVersion(); /** * Sets the value of the '{@link net.opengis.wfs20.BaseRequestType#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #isSetVersion() * @see #unsetVersion() * @see #getVersion() * @generated */ void setVersion(String value); /** * Unsets the value of the '{@link net.opengis.wfs20.BaseRequestType#getVersion Version}' attribute. * * * @see #isSetVersion() * @see #getVersion() * @see #setVersion(String) * @generated */ void unsetVersion(); /** * Returns whether the value of the '{@link net.opengis.wfs20.BaseRequestType#getVersion Version}' attribute is set. * * * @return whether the value of the 'Version' attribute is set. * @see #unsetVersion() * @see #getVersion() * @see #setVersion(String) * @generated */ boolean isSetVersion(); /** * * The base url the request originated from. *

* While not part of the xml schema we add this property after the fact to allow applications * to associate a base url with this request object. *

* * * @model */ String getBaseUrl(); /** * Sets the value of the '{@link net.opengis.wfs20.BaseRequestType#getBaseUrl Base Url}' attribute. * * * @param value the new value of the 'Base Url' attribute. * @see #getBaseUrl() * @generated */ void setBaseUrl(String value); /** * Extended model properties. *

* This map allows client to store additional properties with the this * request object, properties that are not part of the model proper. *

* * @model */ Map getExtendedProperties(); /** * Sets the value of the '{@link net.opengis.wfs20.BaseRequestType#getExtendedProperties Extended Properties}' attribute. * * * @param value the new value of the 'Extended Properties' attribute. * @see #getExtendedProperties() * @generated */ void setExtendedProperties(Map value); } // BaseRequestType