/** * * * * $Id$ */ package net.opengis.wps10; import java.util.Map; 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.wps10.Wps10Package#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.wps10.Wps10Package#getGetCapabilitiesType_AcceptVersions() * @model containment="true" * extendedMetaData="kind='element' name='AcceptVersions' namespace='##targetNamespace'" * @generated */ AcceptVersionsType getAcceptVersions(); /** * Sets the value of the '{@link net.opengis.wps10.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.wps10.Wps10Package#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.wps10.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.wps10.Wps10Package#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.wps10.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.wps10.GetCapabilitiesType#getService Service}' attribute. * * * @see #isSetService() * @see #getService() * @see #setService(String) * @generated */ void unsetService(); /** * Returns whether the value of the '{@link net.opengis.wps10.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 value of the 'Base Url' attribute. * *

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

* * @return the value of the 'Base Url' attribute. * @see #setBaseUrl(String) * @see net.opengis.wps10.Wps10Package#getGetCapabilitiesType_BaseUrl() * @model * @generated */ String getBaseUrl(); /** * Sets the value of the '{@link net.opengis.wps10.GetCapabilitiesType#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.wps10.GetCapabilitiesType#getExtendedProperties Extended Properties}' attribute. * * * @param value the new value of the 'Extended Properties' attribute. * @see #getExtendedProperties() * @generated */ void setExtendedProperties(Map value); } // GetCapabilitiesType