/** * * * * $Id$ */ package net.opengis.wps; import net.opengis.ows11.CodeType; import net.opengis.ows11.LanguageStringType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Input Type'. * * * * Value of one input to a process. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getInputType() * @model extendedMetaData="name='InputType' kind='elementOnly'" * @generated */ public interface InputType extends EObject { /** * Returns the value of the 'Identifier' containment reference. * * * * Unambiguous identifier or name of a process, unique for this server, or unambiguous identifier or name of an output, unique for this process. * * @return the value of the 'Identifier' containment reference. * @see #setIdentifier(CodeType) * @see net.opengis.wps.WpsPackage#getInputType_Identifier() * @model containment="true" required="true" * extendedMetaData="kind='element' name='Identifier' namespace='http://www.opengis.net/ows/1.1'" * @generated */ CodeType getIdentifier(); /** * Sets the value of the '{@link net.opengis.wps.InputType#getIdentifier Identifier}' containment reference. * * * @param value the new value of the 'Identifier' containment reference. * @see #getIdentifier() * @generated */ void setIdentifier(CodeType value); /** * Returns the value of the 'Title' containment reference. * * * * Title of a process or output, normally available for display to a human. * * @return the value of the 'Title' containment reference. * @see #setTitle(LanguageStringType) * @see net.opengis.wps.WpsPackage#getInputType_Title() * @model containment="true" * extendedMetaData="kind='element' name='Title' namespace='http://www.opengis.net/ows/1.1'" * @generated */ LanguageStringType getTitle(); /** * Sets the value of the '{@link net.opengis.wps.InputType#getTitle Title}' containment reference. * * * @param value the new value of the 'Title' containment reference. * @see #getTitle() * @generated */ void setTitle(LanguageStringType value); /** * Returns the value of the 'Abstract' containment reference. * * * * Brief narrative description of a process or output, normally available for display to a human. * * @return the value of the 'Abstract' containment reference. * @see #setAbstract(LanguageStringType) * @see net.opengis.wps.WpsPackage#getInputType_Abstract() * @model containment="true" * extendedMetaData="kind='element' name='Abstract' namespace='http://www.opengis.net/ows/1.1'" * @generated */ LanguageStringType getAbstract(); /** * Sets the value of the '{@link net.opengis.wps.InputType#getAbstract Abstract}' containment reference. * * * @param value the new value of the 'Abstract' containment reference. * @see #getAbstract() * @generated */ void setAbstract(LanguageStringType value); /** * Returns the value of the 'Reference' containment reference. * * * * Identifies this input value as a web accessible resource, and references that resource. * * @return the value of the 'Reference' containment reference. * @see #setReference(InputReferenceType) * @see net.opengis.wps.WpsPackage#getInputType_Reference() * @model containment="true" * extendedMetaData="kind='element' name='Reference' namespace='##targetNamespace'" * @generated */ InputReferenceType getReference(); /** * Sets the value of the '{@link net.opengis.wps.InputType#getReference Reference}' containment reference. * * * @param value the new value of the 'Reference' containment reference. * @see #getReference() * @generated */ void setReference(InputReferenceType value); /** * Returns the value of the 'Data' containment reference. * * * * Identifies this input value as a data embedded in this request, and includes that data. * * @return the value of the 'Data' containment reference. * @see #setData(DataType) * @see net.opengis.wps.WpsPackage#getInputType_Data() * @model containment="true" * extendedMetaData="kind='element' name='Data' namespace='##targetNamespace'" * @generated */ DataType getData(); /** * Sets the value of the '{@link net.opengis.wps.InputType#getData Data}' containment reference. * * * @param value the new value of the 'Data' containment reference. * @see #getData() * @generated */ void setData(DataType value); } // InputType