/** * * * * $Id$ */ package net.opengis.wps; import net.opengis.ows11.ExceptionReportType; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Process Failed Type'. * * * * Indicator that the process has failed to execute successfully. The reason for failure is given in the exception report. * * *

* The following features are supported: *

*

* * @see net.opengis.wps.WpsPackage#getProcessFailedType() * @model extendedMetaData="name='ProcessFailedType' kind='elementOnly'" * @generated */ public interface ProcessFailedType extends EObject { /** * Returns the value of the 'Exception Report' containment reference. * * * * Report message returned to the client that requested any OWS operation when the server detects an error while processing that operation request. * * @return the value of the 'Exception Report' containment reference. * @see #setExceptionReport(ExceptionReportType) * @see net.opengis.wps.WpsPackage#getProcessFailedType_ExceptionReport() * @model containment="true" required="true" * extendedMetaData="kind='element' name='ExceptionReport' namespace='http://www.opengis.net/ows/1.1'" * @generated */ ExceptionReportType getExceptionReport(); /** * Sets the value of the '{@link net.opengis.wps.ProcessFailedType#getExceptionReport Exception Report}' containment reference. * * * @param value the new value of the 'Exception Report' containment reference. * @see #getExceptionReport() * @generated */ void setExceptionReport(ExceptionReportType value); } // ProcessFailedType