/** * * * * $Id$ */ package net.opengis.wps; import net.opengis.ows11.AcceptVersionsType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Get Capabilities Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getGetCapabilitiesType() * @model extendedMetaData="name='GetCapabilities_._type' kind='elementOnly'" * @generated */ public interface GetCapabilitiesType extends EObject { /** * Returns the value of the 'Accept Versions' containment reference. * * * * When omitted, server shall return latest supported version. * * @return the value of the 'Accept Versions' containment reference. * @see #setAcceptVersions(AcceptVersionsType) * @see net.opengis.wps.WpsPackage#getGetCapabilitiesType_AcceptVersions() * @model containment="true" * extendedMetaData="kind='element' name='AcceptVersions' namespace='##targetNamespace'" * @generated */ AcceptVersionsType getAcceptVersions(); /** * Sets the value of the '{@link net.opengis.wps.GetCapabilitiesType#getAcceptVersions Accept Versions}' containment reference. * * * @param value the new value of the 'Accept Versions' containment reference. * @see #getAcceptVersions() * @generated */ void setAcceptVersions(AcceptVersionsType value); /** * Returns the value of the 'Language' attribute. * * * * RFC 4646 language code of the human-readable text (e.g. "en-CA"). * * @return the value of the 'Language' attribute. * @see #setLanguage(String) * @see net.opengis.wps.WpsPackage#getGetCapabilitiesType_Language() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='language'" * @generated */ String getLanguage(); /** * Sets the value of the '{@link net.opengis.wps.GetCapabilitiesType#getLanguage Language}' attribute. * * * @param value the new value of the 'Language' attribute. * @see #getLanguage() * @generated */ void setLanguage(String value); /** * Returns the value of the 'Service' attribute. * The default value is "WPS". * * * * OGC service type identifier (WPS). * * @return the value of the 'Service' attribute. * @see #isSetService() * @see #unsetService() * @see #setService(String) * @see net.opengis.wps.WpsPackage#getGetCapabilitiesType_Service() * @model default="WPS" unsettable="true" dataType="net.opengis.ows11.ServiceType" required="true" * extendedMetaData="kind='attribute' name='service'" * @generated */ String getService(); /** * Sets the value of the '{@link net.opengis.wps.GetCapabilitiesType#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.GetCapabilitiesType#getService Service}' attribute. * * * @see #isSetService() * @see #getService() * @see #setService(String) * @generated */ void unsetService(); /** * Returns whether the value of the '{@link net.opengis.wps.GetCapabilitiesType#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 base url of the request. *

* This is a special property added manually. *

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