/** * * * * $Id$ */ package net.opengis.wps; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Complex Data Description Type'. * * * * A combination of format, encoding, and/or schema supported by a process input or output. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getComplexDataDescriptionType() * @model extendedMetaData="name='ComplexDataDescriptionType' kind='elementOnly'" * @generated */ public interface ComplexDataDescriptionType extends EObject { /** * Returns the value of the 'Mime Type' attribute. * * * * Mime type supported for this input or output (e.g., text/xml). * * @return the value of the 'Mime Type' attribute. * @see #setMimeType(String) * @see net.opengis.wps.WpsPackage#getComplexDataDescriptionType_MimeType() * @model dataType="net.opengis.ows11.MimeType" required="true" * extendedMetaData="kind='element' name='MimeType'" * @generated */ String getMimeType(); /** * Sets the value of the '{@link net.opengis.wps.ComplexDataDescriptionType#getMimeType Mime Type}' attribute. * * * @param value the new value of the 'Mime Type' attribute. * @see #getMimeType() * @generated */ void setMimeType(String value); /** * Returns the value of the 'Encoding' attribute. * * * * Reference to an encoding supported for this input or output (e.g., UTF-8). This element shall be omitted if Encoding does not apply to this Input/Output. * * @return the value of the 'Encoding' attribute. * @see #setEncoding(String) * @see net.opengis.wps.WpsPackage#getComplexDataDescriptionType_Encoding() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='element' name='Encoding'" * @generated */ String getEncoding(); /** * Sets the value of the '{@link net.opengis.wps.ComplexDataDescriptionType#getEncoding Encoding}' attribute. * * * @param value the new value of the 'Encoding' attribute. * @see #getEncoding() * @generated */ void setEncoding(String value); /** * Returns the value of the 'Schema' attribute. * * * * Reference to a definition of XML elements or types supported for this Input/Output (e.g., GML 2.1 Application Schema). Each of these XML elements or types shall be defined in a separate XML Schema Document. This parameter shall be included when this input/output is XML encoded using an XML schema. When included, the input/output shall validate against the referenced XML Schema. This element shall be omitted if Schema does not apply to this Input/Output. Note: If the Input/Output uses a profile of a larger schema, the server administrator should provide that schema profile for validation purposes. * * @return the value of the 'Schema' attribute. * @see #setSchema(String) * @see net.opengis.wps.WpsPackage#getComplexDataDescriptionType_Schema() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='element' name='Schema'" * @generated */ String getSchema(); /** * Sets the value of the '{@link net.opengis.wps.ComplexDataDescriptionType#getSchema Schema}' attribute. * * * @param value the new value of the 'Schema' attribute. * @see #getSchema() * @generated */ void setSchema(String value); } // ComplexDataDescriptionType