Package net.opengis.wps10
Interface ProcessStartedType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
ProcessStartedTypeImpl
public interface ProcessStartedType extends EObject
A representation of the model object 'Process Started Type'. Indicates that this process has been has been accepted by the server, and processing has begun.The following features are supported:
- See Also:
Wps10Package.getProcessStartedType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigInteger
getPercentCompleted()
Returns the value of the 'Percent Completed' attribute.String
getValue()
Returns the value of the 'Value' attribute.void
setPercentCompleted(BigInteger value)
Sets the value of the 'Percent Completed
' attribute.void
setValue(String value)
Sets the value of the 'Value
' attribute.
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of the 'Value' attribute. A human-readable text string whose contents are left open to definition by each WPS server, but is expected to include any messages the server may wish to let the clients know. Such information could include how much longer the process may take to execute, or any warning conditions that may have been encountered to date. The client may display this text to a human user.- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(String)
,Wps10Package.getProcessStartedType_Value()
-
setValue
void setValue(String value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
getPercentCompleted
BigInteger getPercentCompleted()
Returns the value of the 'Percent Completed' attribute. Percentage of process that has been completed, where 0 means the process has just started, and 99 means the process is almost complete. This value is expected to be accurate to within ten percent.- Returns:
- the value of the 'Percent Completed' attribute.
- See Also:
setPercentCompleted(BigInteger)
,Wps10Package.getProcessStartedType_PercentCompleted()
-
setPercentCompleted
void setPercentCompleted(BigInteger value)
Sets the value of the 'Percent Completed
' attribute.- Parameters:
value
- the new value of the 'Percent Completed' attribute.- See Also:
getPercentCompleted()
-
-