/** * * * * $Id$ */ package net.opengis.wps; import javax.xml.datatype.XMLGregorianCalendar; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Status Type'. * * * * Description of the status of process execution. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getStatusType() * @model extendedMetaData="name='StatusType' kind='elementOnly'" * @generated */ public interface StatusType extends EObject { /** * Returns the value of the 'Process Accepted' attribute. * * * * Indicates that this process has been accepted by the server, but is in a queue and has not yet started to execute. The contents of this human-readable text string is left open to definition by each server implementation, but is expected to include any messages the server may wish to let the clients know. Such information could include how long the queue is, or any warning conditions that may have been encountered. The client may display this text to a human user. * * @return the value of the 'Process Accepted' attribute. * @see #setProcessAccepted(String) * @see net.opengis.wps.WpsPackage#getStatusType_ProcessAccepted() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='ProcessAccepted' namespace='##targetNamespace'" * @generated */ String getProcessAccepted(); /** * Sets the value of the '{@link net.opengis.wps.StatusType#getProcessAccepted Process Accepted}' attribute. * * * @param value the new value of the 'Process Accepted' attribute. * @see #getProcessAccepted() * @generated */ void setProcessAccepted(String value); /** * Returns the value of the 'Process Started' containment reference. * * * * Indicates that this process has been accepted by the server, and processing has begun. * * @return the value of the 'Process Started' containment reference. * @see #setProcessStarted(ProcessStartedType) * @see net.opengis.wps.WpsPackage#getStatusType_ProcessStarted() * @model containment="true" * extendedMetaData="kind='element' name='ProcessStarted' namespace='##targetNamespace'" * @generated */ ProcessStartedType getProcessStarted(); /** * Sets the value of the '{@link net.opengis.wps.StatusType#getProcessStarted Process Started}' containment reference. * * * @param value the new value of the 'Process Started' containment reference. * @see #getProcessStarted() * @generated */ void setProcessStarted(ProcessStartedType value); /** * Returns the value of the 'Process Paused' containment reference. * * * * Indicates that this process has been accepted by the server, and processing has started but subsequently been paused by the server. * * @return the value of the 'Process Paused' containment reference. * @see #setProcessPaused(ProcessStartedType) * @see net.opengis.wps.WpsPackage#getStatusType_ProcessPaused() * @model containment="true" * extendedMetaData="kind='element' name='ProcessPaused' namespace='##targetNamespace'" * @generated */ ProcessStartedType getProcessPaused(); /** * Sets the value of the '{@link net.opengis.wps.StatusType#getProcessPaused Process Paused}' containment reference. * * * @param value the new value of the 'Process Paused' containment reference. * @see #getProcessPaused() * @generated */ void setProcessPaused(ProcessStartedType value); /** * Returns the value of the 'Process Succeeded' attribute. * * * * Indicates that this process has successfully completed execution. The contents of this human-readable text string is left open to definition by each server, but is expected to include any messages the server may wish to let the clients know, such as how long the process took to execute, or any warning conditions that may have been encountered. The client may display this text string to a human user. The client should make use of the presence of this element to trigger automated or manual access to the results of the process. If manual access is intended, the client should use the presence of this element to present the results as downloadable links to the user. * * @return the value of the 'Process Succeeded' attribute. * @see #setProcessSucceeded(String) * @see net.opengis.wps.WpsPackage#getStatusType_ProcessSucceeded() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='element' name='ProcessSucceeded' namespace='##targetNamespace'" * @generated */ String getProcessSucceeded(); /** * Sets the value of the '{@link net.opengis.wps.StatusType#getProcessSucceeded Process Succeeded}' attribute. * * * @param value the new value of the 'Process Succeeded' attribute. * @see #getProcessSucceeded() * @generated */ void setProcessSucceeded(String value); /** * Returns the value of the 'Process Failed' containment reference. * * * * Indicates that execution of this process has failed, and includes error information. * * @return the value of the 'Process Failed' containment reference. * @see #setProcessFailed(ProcessFailedType) * @see net.opengis.wps.WpsPackage#getStatusType_ProcessFailed() * @model containment="true" * extendedMetaData="kind='element' name='ProcessFailed' namespace='##targetNamespace'" * @generated */ ProcessFailedType getProcessFailed(); /** * Sets the value of the '{@link net.opengis.wps.StatusType#getProcessFailed Process Failed}' containment reference. * * * @param value the new value of the 'Process Failed' containment reference. * @see #getProcessFailed() * @generated */ void setProcessFailed(ProcessFailedType value); /** * Returns the value of the 'Creation Time' attribute. * * * * The time (UTC) that the process finished. If the process is still executing or awaiting execution, this element shall contain the creation time of this document. * * @return the value of the 'Creation Time' attribute. * @see #setCreationTime(XMLGregorianCalendar) * @see net.opengis.wps.WpsPackage#getStatusType_CreationTime() * @model dataType="org.eclipse.emf.ecore.xml.type.DateTime" required="true" * extendedMetaData="kind='attribute' name='creationTime'" * @generated */ XMLGregorianCalendar getCreationTime(); /** * Sets the value of the '{@link net.opengis.wps.StatusType#getCreationTime Creation Time}' attribute. * * * @param value the new value of the 'Creation Time' attribute. * @see #getCreationTime() * @generated */ void setCreationTime(XMLGregorianCalendar value); } // StatusType