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

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getHeaderType() * @model extendedMetaData="name='Header_._type' kind='empty'" * @generated */ public interface HeaderType extends EObject { /** * Returns the value of the 'Key' attribute. * * * * Key portion of the Key-Value pair in the HTTP request header. * * @return the value of the 'Key' attribute. * @see #setKey(String) * @see net.opengis.wps.WpsPackage#getHeaderType_Key() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='key'" * @generated */ String getKey(); /** * Sets the value of the '{@link net.opengis.wps.HeaderType#getKey Key}' attribute. * * * @param value the new value of the 'Key' attribute. * @see #getKey() * @generated */ void setKey(String value); /** * Returns the value of the 'Value' attribute. * * * * Value portion of the Key-Value pair in the HTTP request header. * * @return the value of the 'Value' attribute. * @see #setValue(String) * @see net.opengis.wps.WpsPackage#getHeaderType_Value() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='value'" * @generated */ String getValue(); /** * Sets the value of the '{@link net.opengis.wps.HeaderType#getValue Value}' attribute. * * * @param value the new value of the 'Value' attribute. * @see #getValue() * @generated */ void setValue(String value); } // HeaderType