/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Response Form Type'. * * * * Defines the response type of the WPS, either raw data or XML document * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getResponseFormType() * @model extendedMetaData="name='ResponseFormType' kind='elementOnly'" * @generated */ public interface ResponseFormType extends EObject { /** * Returns the value of the 'Response Document' containment reference. * * * * Indicates that the outputs shall be returned as part of a WPS response document. * * @return the value of the 'Response Document' containment reference. * @see #setResponseDocument(ResponseDocumentType) * @see net.opengis.wps.WpsPackage#getResponseFormType_ResponseDocument() * @model containment="true" * extendedMetaData="kind='element' name='ResponseDocument' namespace='##targetNamespace'" * @generated */ ResponseDocumentType getResponseDocument(); /** * Sets the value of the '{@link net.opengis.wps.ResponseFormType#getResponseDocument Response Document}' containment reference. * * * @param value the new value of the 'Response Document' containment reference. * @see #getResponseDocument() * @generated */ void setResponseDocument(ResponseDocumentType value); /** * Returns the value of the 'Raw Data Output' containment reference. * * * * Indicates that the output shall be returned directly as raw data, without a WPS response document. * * @return the value of the 'Raw Data Output' containment reference. * @see #setRawDataOutput(OutputDefinitionType) * @see net.opengis.wps.WpsPackage#getResponseFormType_RawDataOutput() * @model containment="true" * extendedMetaData="kind='element' name='RawDataOutput' namespace='##targetNamespace'" * @generated */ OutputDefinitionType getRawDataOutput(); /** * Sets the value of the '{@link net.opengis.wps.ResponseFormType#getRawDataOutput Raw Data Output}' containment reference. * * * @param value the new value of the 'Raw Data Output' containment reference. * @see #getRawDataOutput() * @generated */ void setRawDataOutput(OutputDefinitionType value); } // ResponseFormType