Package net.opengis.wps10
Interface StatusType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
StatusTypeImpl
public interface StatusType extends EObject
A representation of the model object 'Status Type'. Description of the status of process execution.The following features are supported:
- See Also:
Wps10Package.getStatusType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getCreationTime()
Returns the value of the 'Creation Time' attribute.String
getProcessAccepted()
Returns the value of the 'Process Accepted' attribute.ProcessFailedType
getProcessFailed()
Returns the value of the 'Process Failed' containment reference.ProcessStartedType
getProcessPaused()
Returns the value of the 'Process Paused' containment reference.ProcessStartedType
getProcessStarted()
Returns the value of the 'Process Started' containment reference.String
getProcessSucceeded()
Returns the value of the 'Process Succeeded' attribute.void
setCreationTime(Object value)
Sets the value of the 'Creation Time
' attribute.void
setProcessAccepted(String value)
Sets the value of the 'Process Accepted
' attribute.void
setProcessFailed(ProcessFailedType value)
Sets the value of the 'Process Failed
' containment reference.void
setProcessPaused(ProcessStartedType value)
Sets the value of the 'Process Paused
' containment reference.void
setProcessStarted(ProcessStartedType value)
Sets the value of the 'Process Started
' containment reference.void
setProcessSucceeded(String value)
Sets the value of the 'Process Succeeded
' attribute.
-
-
-
Method Detail
-
getProcessAccepted
String getProcessAccepted()
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.- Returns:
- the value of the 'Process Accepted' attribute.
- See Also:
setProcessAccepted(String)
,Wps10Package.getStatusType_ProcessAccepted()
-
setProcessAccepted
void setProcessAccepted(String value)
Sets the value of the 'Process Accepted
' attribute.- Parameters:
value
- the new value of the 'Process Accepted' attribute.- See Also:
getProcessAccepted()
-
getProcessStarted
ProcessStartedType getProcessStarted()
Returns the value of the 'Process Started' containment reference. Indicates that this process has been accepted by the server, and processing has begun.- Returns:
- the value of the 'Process Started' containment reference.
- See Also:
setProcessStarted(ProcessStartedType)
,Wps10Package.getStatusType_ProcessStarted()
-
setProcessStarted
void setProcessStarted(ProcessStartedType value)
Sets the value of the 'Process Started
' containment reference.- Parameters:
value
- the new value of the 'Process Started' containment reference.- See Also:
getProcessStarted()
-
getProcessPaused
ProcessStartedType getProcessPaused()
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.- Returns:
- the value of the 'Process Paused' containment reference.
- See Also:
setProcessPaused(ProcessStartedType)
,Wps10Package.getStatusType_ProcessPaused()
-
setProcessPaused
void setProcessPaused(ProcessStartedType value)
Sets the value of the 'Process Paused
' containment reference.- Parameters:
value
- the new value of the 'Process Paused' containment reference.- See Also:
getProcessPaused()
-
getProcessSucceeded
String getProcessSucceeded()
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.- Returns:
- the value of the 'Process Succeeded' attribute.
- See Also:
setProcessSucceeded(String)
,Wps10Package.getStatusType_ProcessSucceeded()
-
setProcessSucceeded
void setProcessSucceeded(String value)
Sets the value of the 'Process Succeeded
' attribute.- Parameters:
value
- the new value of the 'Process Succeeded' attribute.- See Also:
getProcessSucceeded()
-
getProcessFailed
ProcessFailedType getProcessFailed()
Returns the value of the 'Process Failed' containment reference. Indicates that execution of this process has failed, and includes error information.- Returns:
- the value of the 'Process Failed' containment reference.
- See Also:
setProcessFailed(ProcessFailedType)
,Wps10Package.getStatusType_ProcessFailed()
-
setProcessFailed
void setProcessFailed(ProcessFailedType value)
Sets the value of the 'Process Failed
' containment reference.- Parameters:
value
- the new value of the 'Process Failed' containment reference.- See Also:
getProcessFailed()
-
getCreationTime
Object getCreationTime()
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.- Returns:
- the value of the 'Creation Time' attribute.
- See Also:
setCreationTime(Object)
,Wps10Package.getStatusType_CreationTime()
-
setCreationTime
void setCreationTime(Object value)
Sets the value of the 'Creation Time
' attribute.- Parameters:
value
- the new value of the 'Creation Time' attribute.- See Also:
getCreationTime()
-
-