/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Response Base Type'. * * * * WPS operation response base, for all WPS operations except GetCapabilities. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getResponseBaseType() * @model extendedMetaData="name='ResponseBaseType' kind='empty'" * @generated */ public interface ResponseBaseType extends EObject { /** * Returns the value of the 'Service' attribute. * The default value is "WPS". * * * * Service type identifier (WPS) * * @return the value of the 'Service' attribute. * @see #isSetService() * @see #unsetService() * @see #setService(String) * @see net.opengis.wps.WpsPackage#getResponseBaseType_Service() * @model default="WPS" 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.wps.ResponseBaseType#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.wps.ResponseBaseType#getService Service}' attribute. * * * @see #isSetService() * @see #getService() * @see #setService(String) * @generated */ void unsetService(); /** * Returns whether the value of the '{@link net.opengis.wps.ResponseBaseType#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 "1.0.0". * * * * Version of the WPS interface specification implemented by the server (1.0.0) * * @return the value of the 'Version' attribute. * @see #isSetVersion() * @see #unsetVersion() * @see #setVersion(String) * @see net.opengis.wps.WpsPackage#getResponseBaseType_Version() * @model default="1.0.0" unsettable="true" dataType="net.opengis.ows11.VersionType1" required="true" * extendedMetaData="kind='attribute' name='version'" * @generated */ String getVersion(); /** * Sets the value of the '{@link net.opengis.wps.ResponseBaseType#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.wps.ResponseBaseType#getVersion Version}' attribute. * * * @see #isSetVersion() * @see #getVersion() * @see #setVersion(String) * @generated */ void unsetVersion(); /** * Returns whether the value of the '{@link net.opengis.wps.ResponseBaseType#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(); } // ResponseBaseType